How to debug a stored procedure in sql server 2008
I newly joined as a Trainee.. Can anybody help me?.. how to solve issues that raises in stored procedure. Any methods or techniques to find the bugs in a stored procedure..
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Joginder BangerPosted Feb 19, 2015, 10:55 PM
create proc procedureName
()
as
begin
end
if you want debug any store procedure select the procedureName and press the CTRL+F5. your studio convert to in debug.
Manish Kumar ChoudharyPosted Feb 18, 2015, 5:50 AM
Go through following links it will help you
https://msdn.microsoft.com/en-US/library/yet1b7by%28v=vs.80%29.aspx
http://stackoverflow.com/questions/1793612/debugging-stored-procedure-in-sql-server-2008