Question

Is there a way that you can have SERVEROUTPUT set to ON in sqlplus but somehow repress the message "PL/SQL procedure successfully completed" that is automatically generated upon completed execution of a plsql procedure?

Was it helpful?

Solution

Use the command:

SET FEEDBACK OFF

before running the procedure. And afterwards you can turn it back on again:

SET FEEDBACK ON
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top