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?
views:
2066answers:
2
+12
A:
Use the command:
SET FEEDBACK OFF
before running the procedure
Tony Andrews
2008-10-30 15:13:31