+1 vote
in PL/SQL by
How Can You Generate Debugging Output From Pl/sql?

1 Answer

0 votes
by

Use the DBMS_OUTPUT package. Another possible method is to just use the SHOW ERROR command, but this only shows errors. The DBMS_OUTPUT package can be used to show intermediate results from loops and the status of variables as the procedure is executed. The new package UTL_FILE can also be used.

...