Oracle Certification, Database Administration, SQL, Application, Programming Reference Books
Display user defined messages from a registered PL*SQL program

If you want to display messages for the users from a registered SQL*PLUS concurrent program do the following :

Add the following lines at the start of the program
set termout off
set feedback off
set serverout on size 1000000
Add the following lines at the end of program
set termout on
set feedback on

These messages will be displayed in the output file of concurrent program.

Return to : Oracle Database, SQL, Application, Programming Tips