Hi,
I have some 50 Delete statements in simple SQL, like
BEGIN
DECLARE
DELETE FROM where x=1;
DELETE FROM where x=2;
DELETE FROM where x=3;
.....
exception when others
then
dbms_output.put_line(sqlcode);
raise;
END;
now on error script is stoping but it is incorect :( i want to view the error in which delete it was , but scipt need to go to end !
Any help please !!!
THANKS!
ID.
Edited by: 1D10T on Apr 10, 2013 1:06 AM
Edited by: 1D10T on Apr 10, 2013 1:06 AM
Edited by: 1D10T on Apr 10, 2013 1:07 AM
Edited by: 1D10T on Apr 10, 2013 1:07 AM