Debugging SQL Server Stored procedure help

  • Thread starter Thread starter David C. Allen
  • Start date Start date
D

David C. Allen

I am trying to debug an SQL Server Stored Procedure form VS.NET 2003. I have
a break point set in the SP code but it is not being hit. When I hold the
pointer over the line it says that it will not be hit because:

Unable to bind SQL breakpoint at this time. Object containing breakpoint not
loaded at this time.

I am admin on this machine that also has SQL server on it. Any ideas on how
to fix this?

Thanks!
 
Solved my own problem. I had to turn on debugging on my sql server via:

exec sp_sdidebug 'legacy_on'
 
Back
Top