InterviewSolution
Saved Bookmarks
| 1. |
What is the %FOUND and %NOTFOUND cursor attributes in PL/SQL? |
|
Answer» To display output, PL/SQL has an in-built package known as DBMS_OUTPUT. With this package, we can also display debugging information. The output: Website World!Let us see the subprograms of DBMS_OUTPUT:
Disables message output.
Enables message output. A NULL value of buffer_size represents unlimited buffer size.
Retrieves a SINGLE line of buffered information.
Retrieves an array of lines from the buffer.
Puts an end-of-line marker.
Places a PARTIAL line in the buffer.
Places a line in the buffer. |
|