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

Can we join more than 2 tables in sql?

0 Answers  


What does count (*) mean?

0 Answers  


Why we use stored procedure instead of query?

0 Answers  


What is the meaning of disabling a trigger?

0 Answers  


What is a clob in sql?

0 Answers  






How does a trigger work?

0 Answers  


what are the advantages of using stored procedures? : Sql dba

0 Answers  


what is sql profiler? : Sql dba

0 Answers  


What is the least restrictive isolation level? : Transact sql

0 Answers  


How can use stored procedures in sql?

0 Answers  


What is a sql instance vs database?

0 Answers  


Can you selectively load only those records that you need? : aql loader

0 Answers  


Categories