How do I Suppress "PL/SQL procedure successfully completed" message in sqlplus?

JJMoho picture JJMoho · Oct 30, 2008 · Viewed 32.6k times · Source

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?

Answer

Tony Andrews picture Tony Andrews · Oct 30, 2008

Use the command:

SET FEEDBACK OFF

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

SET FEEDBACK ON