Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Exceptions

Re: Exceptions

From: Igor Neyman <ineyman_at_perceptron.com>
Date: Thu, 23 Aug 2001 04:57:06 -0700
Message-ID: <F001.00374E24.20010823051111@fatcity.com>

Try local exception processing:

LOOP
begin
<<your PL/SQL inside the loop>>
EXCEPTION WHEN <<your_exception>> THEN

    <<do your processing>>
end;
END LOOP; Igor Neyman, OCP DBA
Perceptron, Inc.
(734)414-4627
ineyman_at_perceptron.com

> Hi everyoene,
> Is there any way I could cause my pl/sql to proceed with executuion when
an
> exception is raised? Im thinking of a kind of 'On Error Resume Next' thing
> we've got in VB. Ive got a loop and I need to continue executing the code
in
> the loop after when an exception is raised and after I do some processing
in
> the exception block.Pls send me your suggestions.
>
> Thanks and Regards,
> Leo.
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author:
> INET: Leo_Rajiv_at_satyam.com
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> 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).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Igor Neyman
  INET: ineyman_at_perceptron.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
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 Thu Aug 23 2001 - 06:57:06 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US