Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> FW: How to drop these procedures
Hi,
One of my friend has this problem which I have mentioned below,
There are two
procedures in the database and I'm giving here their contents.
Procedure 1:
create or replace procedure proc1 as
begin
proc2;
dbms_output.put_line('I am in Proc1');
end;
Procedure 2:
procedure proc2 as
begin
proc1_syn; ( proc1_syn is the synonym of procedure proc1).
dbms_output.put_line('I am in Proc1');
end;
Both of them are invalid and rightly so. When you compile them you'll get
a deadlock error. But more importantly, I can't either delete these
procedures or edit and recompile them.
When try dropping the synonym of the procedure proc1 it
gave me the following error,
ORA-00604: error occurred at recursive SQL level 1 ORA-01000: maximum open cursors exceeded.
When I tried compiling I got this error.
ORA-04045: errors during recompilation/revalidation of TBMS.PROC2 ORA-04020: deadlock detected while trying to lock object TBMS.PROC1
When I tried dropping the procedures it gave me the following error,
ORA-00600: internal error code, arguments: [4882], [9936752], [20285216], [9775880], [], [], [], [] Received on Fri Dec 22 2000 - 03:59:26 CST
![]() |
![]() |