vote up 1 vote down star

I have a problem getting Stored Procedure debugging to work in Visual Studio 2008: When I start debugging, I get these success messages in the output window, however the actual stored procedure windows does not show up.

Auto-attach to process '[1640] [SQL] stagsql' on machine 'stagsql' succeeded.
The thread 'stagsql [67]' (0xf80) has exited with code 0 (0x0).
The thread 'stagsql [67]' (0xf80) has exited with code 0 (0x0).
The thread 'stagsql [69]' (0x908) has exited with code 0 (0x0).
The thread 'stagsql [69]' (0x908) has exited with code 0 (0x0).
The thread 'stagsql [69]' (0x908) has exited with code 0 (0x0).
The thread 'stagsql [69]' (0x908) has exited with code 0 (0x0).
Running [dbo].[uspCGetXYZ] ( @nLieferantId = 161616, @nStrukturId = -1, @nPageIndex = 1, @nPageSize = 16, @sSortColumn = arLangname, @nSortAscending = 1 ).

Visual Studio gets into 'debug mode' but the procedure does not show up at all.

The steps I did:

  • Enabled SQL debugging in the project settings
  • Opened the SQL Connection in Server Explorer
  • Enabled CLR/SQL debuggin on the connection
  • Right-click on the procedure and selected "step into stored procedure"

Alternatively I tried to open up the procedure and set a break-point there, it didn't help.

Any ideas? As said, the connection is there but Visual Studio is not capable of opening the procedure code.

flag

67% accept rate
Just to check, this is a CLR stored procedure? – ck May 5 at 12:33
Nope, it is T-SQL – driAn May 5 at 19:43
Has this been resolved for you? – Wayne May 7 at 22:44
Unfortunately now, I am now using Management Studio as debugger instead of Visual Studio :/ – driAn May 8 at 7:44
try a new solution just to test db debugging – Wayne May 8 at 8:50
show 1 more comment

5 Answers

vote up 0 vote down

Is the solution a database solution? Did you go New->Solution->Other->Database?

Once you create a database solution then setup your connection preferences you should be able to use the server explorer to edit and step-into the stored procedure. Please verify this still causes the issue?

Are you using an express edition?

link|flag
No, I use a 'normal' Solution that contains all kind of projects. Can I fix this without dropping my current solution? I use the professional version. – driAn May 5 at 13:33
Ok, try adding a new solution File->Add->New Project and then select Other Project Types->Database. That should give you the DB project in your current solution. Hope this helps – Wayne May 5 at 23:48
Tried this already, didn't help :( – driAn May 8 at 7:43
vote up 0 vote down

I am having an identical situation. Did you figure this one out?

link|flag
I have 2 versions of VS running on my machine and it is working on the 2005 version, but not in the 2008 version... don't know if this helps. – John J May 28 at 15:57
vote up 0 vote down

a link

link|flag
vote up 0 vote down

Can you see the code behind that stored procedure? If it is saved "WITH ENCRYPTION", you may not be able to see the code and then you will need the original source code for the proc to debug it.

link|flag
vote up -1 vote down

I don't think ou can put breakpoints into it like you could in a normal VS application.

However you can create a temp table for logging, and on each line add a new entry into that temp table.

link|flag
1  
you can debug just like you do VS application. Variables and (almost) everything else – Raj More Sep 21 at 19:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.