How to Debug a Stored Procedure?

Answers were Sorted based on User's Feedback



How to Debug a Stored Procedure?..

Answer / swetha

Using PRINT command in stored procedure.
use print to check if the parameter values are fine.
When the stored procedure is executed then print will show
the output of those parameters/variables.

Is This Answer Correct ?    16 Yes 4 No

How to Debug a Stored Procedure?..

Answer / ris

Steps for debugging stored procedure is given below
1.Open the object browser
2.right click the procedure that u want to debug
3.from the popup menu select debug option
4.from the displayed window ,give the values for input
parameters
5.click the button debug

Is This Answer Correct ?    12 Yes 5 No

How to Debug a Stored Procedure?..

Answer / sivakumar

Steps for debugging stored procedure is given below
1.Open the Microsoft visual Studio
2.Select Server Explorer
3.Add Server
4.Select Database Where Procedure is located
5.Select Procedure for debug
6.Right click and select Step into stored procedure
7.Pass Parameter to that procedure
8.Then Do debug.

Is This Answer Correct ?    6 Yes 4 No

How to Debug a Stored Procedure?..

Answer / gd

you can find detailed answer here on How to Debug PL/SQL
Stored Procedures in Visual Studio http://bit.ly/15O01NM

Is This Answer Correct ?    0 Yes 0 No

How to Debug a Stored Procedure?..

Answer / bhagyashri jain

By Command
Execute Procedurename parameter1 ,parameter2,......
u can use
exec Procedurename parameter1 ,parameter2,......


Is This Answer Correct ?    1 Yes 14 No

Post New Answer

More SQL Server Interview Questions

Delete duplicate rows from a table without primary key by using a single query Table Employee empname salary A 200 B 300 A 200 C 400 D 500 D 500 Output should be A 200 B 300 C 400 D 500

14 Answers  


Explain indexed views?

0 Answers  


What is global temp table?

0 Answers  


What does the automatic recovery do?

0 Answers  


Explain Geometry datatype in sql server 2008 with example

0 Answers   Infosys,






where can you add custom error messages to sql server? : Sql server administration

0 Answers  


How to select Distinct columns from the table, table having 20 columns and i want all coulmns

5 Answers   Wipro,


can you any body tell me the difference between candidate key and primary key

4 Answers  


What are the different subsets of sql?

0 Answers  


syntax and example for bitmap index in sql???

1 Answers  


What does it mean to invest in the index?

0 Answers  


Explain left outer join and right outer join?

0 Answers  


Categories