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

Home -> Community -> Usenet -> c.d.o.misc -> Problem with rollback

Problem with rollback

From: Wasim <ahmed_wasim_at_yahoo.com>
Date: 13 Nov 2002 10:21:19 -0800
Message-ID: <6960026.0211131021.1ecee125@posting.google.com>


Hello,

I am having strange problem with rollback statement. My code looks like this

Begin

    insert into some tables;
    Begin

        get a value from database;
    exception when no_data_found

        handle it;
    when others

        raise;
    end
    do some other stuff
    begin

        do some updates;
    exception when no_data_found

        handle it;
    when others
    then

       raise;
    end;
    commit;
exception when others
  rollback;
  raise
end;         

When an exception occurs it not rolling back the informaton that is put in the tables. I don't know any reason why its doing that becasue the out block should rollback.

Regards,
Wasim. Received on Wed Nov 13 2002 - 12:21:19 CST

Original text of this message

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