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: PL/SQL procedure - error

Re: PL/SQL procedure - error

From: Pullikol Kumar <pullikol.kumar_at_mannai.com.qa>
Date: Tue, 22 Jan 2002 05:49:42 -0800
Message-ID: <F001.003F6D72.20020122044021@fatcity.com>

 hi Roland

  Hope below code will help u,

BEGIN

    p1;
    p2;
    p3;
    p4;

  COMMIT;
 EXCEPTION
 WHEN OTHERS THEN
  ROLLBACK;
END; procedure p1
is
BEGIN
 insert into aa values (1,'1');
END;
procedure p2
is
BEGIN
 insert into aa values (2,'2');
END;
procedure p3
is
BEGIN
 insert into aa values (3,'3');
END; procedure p4
is
BEGIN
 insert into aa values (4,'4');
END; Nitheesh

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Pullikol Kumar
  INET: pullikol.kumar_at_mannai.com.qa

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 Tue Jan 22 2002 - 07:49:42 CST

Original text of this message

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