Change oracle display message

天大地大妈咪最大 提交于 2019-12-11 05:47:22

问题


I have written a procedure to check the file exists in the oracle directory. it is working fine. On screen i am printing message if file not exists in path, by using DBMS_OUTPUT.PUTLINE('MESSAGE HERE'); but after displaying message oracle printing default statement PL/SQL Procedure successfully completed. I don't want to display this on screen.


回答1:


To suppress the message in sql*plus of successfully completed procedure use the following command.

set feedback off


来源:https://stackoverflow.com/questions/12278889/change-oracle-display-message

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!