Reputation: 1862
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.
Upvotes: 1
Views: 414
Reputation: 27251
To suppress the message in sql*plus of successfully completed procedure use the following command.
set feedback off
Upvotes: 3