All along, I always in SQL tools, such as SQL Server, Navicat and so on to execute SQL statements to find the problem of their own written SQL problem, the result is asked, let people laughable!
So how do you debug a white-line stored procedure? How do I debug a hundred-line SQL statement?
PL SQL Developer
Since it is a debug stored procedure, the stored procedure is definitely longer, or the parameters are more, here is a very simple example:
(1) Create a new stored procedure: New in the stored procedure--fill in the name and parameters of the stored procedure and click OK.
Then enter the following code in the pop-up form: Then click on the gear (shortcut key F8) to set up this stored procedure, refresh, you can see.
Create or Replace procedure inch Number inch Number Number Number is begin m:=a+b; N:=a-b; End Lifentest;
(2) In the stored procedure we just created, right-click-Select test, you can see the following:
PL/SQL How do I debug a statement, stored procedure