Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: SQL*Plus errors... how to hide?
I like this solution. It works waaaaaaaaaaaaaaaaay better than thedbms_lock.sleep() suggestion ;)
Thank you.
Saira
-----Original Message-----
Sent: November 6, 2003 3:54 PM
To: ORACLE-L_at_fatcity.com
Cc: Saira Somani-Mendelin
Catch the error in an exception clause and ignore it.
SQL> set serveroutput on
SQL> run
1 declare
2 x number ;
3 begin
4 x := to_number ('123^') ;
5 exception
6 when value_error 7 then 8 dbms_output.put_line ('Bad Number') ; 9 when others 10 then 11 raise ;
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Saira Somani-Mendelin
INET: saira_somani_at_yahoo.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Nov 07 2003 - 08:17:12 CST