InterviewSolution
Saved Bookmarks
| 1. |
How Can You Generate Debugging Output From Pl/sql? |
|
Answer» 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. 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. |
|