How will you debug your procedure? If your procedure is
around 2000 lines and the expected output is 10 and we get
only output 5.So how will you debug it?
Somebody pls give the correct answer?

Answers were Sorted based on User's Feedback



How will you debug your procedure? If your procedure is around 2000 lines and the expected output i..

Answer / ravi

You can debug your procedure in various ways:
1: If you are using tools like Toad, PL/SQL or SQL Developer, you can place the breakpoints in the procedure and then debug the same by using step into steps.
2: If you are using SQ*Plus, you need to place DBMS_OUTPUT for messaging and trace the same.
3: You can put the trace log on in the database server and can check the trace files.

Is This Answer Correct ?    7 Yes 0 No

How will you debug your procedure? If your procedure is around 2000 lines and the expected output i..

Answer / arthi

use the following code to debug the huge line of code

DBMS_OUTPUT.PUT_LINE
(dbms_utility.format_error_backtrace||' : '||sqlerrm);

Is This Answer Correct ?    6 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

Give the structure of the procedure ?

1 Answers  


Is time a data type in sql?

1 Answers  


How can use stored procedures in sql?

1 Answers  


Is like operator in sql case sensitive?

1 Answers  


How much does sql certification cost?

1 Answers  


What is the difference between jpql and sql?

1 Answers  


What are sql injection vulnerabilities?

1 Answers  


What is mutating trigger?

1 Answers  


Mention what are the benefits of pl/sql packages?

1 Answers  


What is sql character function?

1 Answers  


What does dml mean?

1 Answers  


What is clustered index sql?

1 Answers  


Categories