Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
SqlException: EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Expand all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Bill Thames  
View profile  
 More options Aug 27 2003, 11:14 am
Newsgroups: microsoft.public.vsnet.debugging
From: "Bill Thames" <b...@eritter.net>
Date: Wed, 27 Aug 2003 10:12:25 -0500
Local: Wed, Aug 27 2003 11:12 am
Subject: SqlException: EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'
I am learning the debugger using IBuySpy. I make small changes to the code
and use the debugger to see the effects of my changes. WindowsXP crashed and
now when I try to debug IBuySpy, I get the following errors while the
programs is starting, and these errors have nothing to do with the areas I
have changed. IBuySpy wirks flawslessly if I run it without debugging. I
would appear that the problem lies in the debugger itself. Can anyone help?

Thanks,
Bill

[SqlException: EXECUTE permission denied on object 'sp_sdidebug', database
'master', owner 'dbo'.]
   System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior
cmdBehavior, RunBehavior runBehavior, Boolean returnStream)
   System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
   System.Data.SqlClient.SqlConnection.IssueSQLDebug(UInt32 option, String
machineName, UInt32 pid, UInt32 id, String sdiDllName, Byte[] data)
   System.Data.SqlClient.SqlConnection.CheckSQLDebug(SqlDebugContext sdc)
   System.Data.SqlClient.SqlConnection.CheckSQLDebugOnConnect()
   System.Data.SqlClient.SqlConnection.OpenWithDebugger()
   System.Data.SqlClient.SqlConnection.Open()

ASPNET.StarterKit.Commerce.ASPNET.StarterKit.Commerce.ProductsDB.GetProduct C
ategories() in K:\ASP.NET Starter
Kits\aaaa\CommerceVBVS\Components\ProductsDB.vb:65
   ASPNET.StarterKit.Commerce.C_Menu.Page_Load(Object sender, EventArgs e)
in K:\ASP.NET Starter Kits\aaaa\CommerceVBVS\_Menu.ascx.vb:44
   System.Web.UI.Control.OnLoad(EventArgs e)
   System.Web.UI.Control.LoadRecursive()
   System.Web.UI.Control.LoadRecursive()
   System.Web.UI.Control.LoadRecursive()
   System.Web.UI.Page.ProcessRequestMain()


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Thames  
View profile  
 More options Aug 27 2003, 11:47 am
Newsgroups: microsoft.public.vsnet.debugging
From: "Bill Thames" <b...@eritter.net>
Date: Wed, 27 Aug 2003 10:43:40 -0500
Local: Wed, Aug 27 2003 11:43 am
Subject: Re: SqlException: EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'

Here is some additional information:
A first chance exception of type 'System.Data.SqlClient.SqlException' occurred in system.data.dll

I hope this helps,

Bill


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Thames  
View profile  
 More options Aug 30 2003, 7:04 pm
Newsgroups: microsoft.public.vsnet.debugging
From: "Bill Thames" <b...@eritter.net>
Date: Sat, 30 Aug 2003 18:03:09 -0500
Local: Sat, Aug 30 2003 7:03 pm
Subject: Re: SqlException: EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'
Did I forget to take a bath or something??? Must be some reason for being
ignored. Perhaps there are no Gurus out there. Oh well! I tried!

"Bill Thames" <b...@eritter.net> wrote in message

news:uZ1za2KbDHA.424@TK2MSFTNGP10.phx.gbl...

ASPNET.StarterKit.Commerce.ASPNET.StarterKit.Commerce.ProductsDB.GetProduct C


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
[MVP] SmileSeo  
View profile  
 More options Aug 30 2003, 7:34 pm
Newsgroups: microsoft.public.vsnet.debugging
From: "[MVP] SmileSeo" <seaou...@msmvp.com>
Date: Sat, 30 Aug 2003 18:32:00 +0900
Subject: Re: SqlException: EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'
Hi. Bill.

As your message explained, sp_sdidebug has no EXECUTE permission. You can
set database permission in the database management tool. Did you do it
already?

--

--------------------
Microsoft .NET MVP

"Bill Thames" <b...@eritter.net> wrote in message

news:uZ1za2KbDHA.424@TK2MSFTNGP10.phx.gbl...

ASPNET.StarterKit.Commerce.ASPNET.StarterKit.Commerce.ProductsDB.GetProduct C


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Richard Cook [MSFT]  
View profile  
 More options Sep 3 2003, 5:40 pm
Newsgroups: microsoft.public.vsnet.debugging
From: "Richard Cook [MSFT]" <richc...@online.microsoft.com>
Date: Wed, 3 Sep 2003 14:38:18 -0700
Local: Wed, Sep 3 2003 5:38 pm
Subject: Re: SqlException: EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'
Hello,

Here is whats happening:

When you try to debug your application the TSQL debug engine is trying to
attach. According to the error message, you do not have permission to debug
TSQL code on the server. So a failure occurs.

But when you just RUN the app, it will work because none of the debug
engines are attempting to attach.

Here is how to resolove your problem:

First of all try [MVP]SmileSeo's suggestion and setup the permissions for
TSQL debugging, if that is what you are trying to do. Also if you are
running SQL2K SP3 then you will also need to run the following TSQL code
once

    exec sp_sdidebug 'legacy_on'

Or if you do not want to debug TSQL code, simply go to the Project
Properties->Debug->Enable SQL Debugging and uncheck it.

Hope this helps.

Regards

Richard

"Bill Thames" <b...@eritter.net> wrote in message

news:uqJpir0bDHA.2684@TK2MSFTNGP11.phx.gbl...

ASPNET.StarterKit.Commerce.ASPNET.StarterKit.Commerce.ProductsDB.GetProduct C


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bill Thames  
View profile  
 More options Sep 17 2003, 9:45 am
Newsgroups: microsoft.public.vsnet.debugging
From: "Bill Thames" <b...@eritter.net>
Date: Wed, 17 Sep 2003 08:42:43 -0500
Local: Wed, Sep 17 2003 9:42 am
Subject: Re: SqlException: EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'
I sure do appreciate all the response to my problem. Thanks to all.

Now then, I am using MSDE and can't find any kind of database management
tools. I can't even find reasonable documentation. How do I manage the
server without installing the full (expensive) SQL-2000?

"Richard Cook [MSFT]" <richc...@online.microsoft.com> wrote in message
news:u4uO3OmcDHA.2404@TK2MSFTNGP10.phx.gbl...

ASPNET.StarterKit.Commerce.ASPNET.StarterKit.Commerce.ProductsDB.GetProduct C


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google