开发者

How to debug stored procedures in SQL server 2008 without CLR?

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

I am trying to 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:

Debug cannot be started at <machine name>. 

I don't want t开发者_开发问答o use CLR debugging. How can I debug stored procedures?


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


try with

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

Read the hints online based on your SP

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜