Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can i debug stored procedures in SQL Server 2008 management studio?

Currently i put a break point on SQL query and then press start debugging but i get an error that debugging cannot be started on my machine.

What are the permissions required right now i am logged in as sys admin. Do we need to attach any process for this if yes the what process and how to do it.

Please share considering i am a complete fresher to SQL server 2008.

I DONT WANT TO USE CLR DEBUGGING.

Thanks, AJ

share|improve this question
what exactly is the error saying? – DForck42 May 13 '11 at 15:37
It just says Debug cannot be started at <machine name>. to know more about debugging click help. – AJ01 May 13 '11 at 17:02
what does the sp do? – DForck42 May 13 '11 at 21:21

2 Answers

up vote 5 down vote accepted

Type exec YourStoredProcedure. Put break point next to it. Hit green (debug) arrow next to execute button. Debugger should start and hit your break point. Hit F11 to step into your stored procedure. See debug menu for more options.

Here is very detailed blog post: T-SQL Debugger for SQL Server 2008

share|improve this answer

try with

TRY()... CATCH()... METHOD

Read the hints online based on your SP

share|improve this answer
Thanks jack'but i am loooking out for new feature in SQL 2008. The debugging feature. – AJ01 May 14 '11 at 15:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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