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

后端 未结 2 639
耶瑟儿~
耶瑟儿~ 2021-02-03 20:59

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 up

2条回答
  •  攒了一身酷
    2021-02-03 21:37

    Use the command:

    SET FEEDBACK OFF
    

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

    SET FEEDBACK ON
    

提交回复
热议问题