Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: URGENT , ORA-00600 WHEN DROPING A PACKAGE
oK . I solved it.
Thing I have done is :
select obj#,owner#,type# from sys.obj$ where
name = 'package_name';
select select * from procedure$ where obj# in (
obj# of the above query).
I have seen that a row is missing for a obj#
in the second query . And manually inserted it into procedure$ .
INSERT INTO procedure$ VALUES
(37767,'-----------------------',NULL,2);
<FONT face=Tahoma
size=2>-----Original Message-----From: Bunyamin K. Karadeniz [<A
href="mailto:bunyamink_at_havelsan.com.tr">mailto:bunyamink_at_havelsan.com.tr]Sent:
08 January 2002 09:55To: Multiple recipients of list
ORACLE-LSubject: URGENT , ORA-00600 WHEN DROPING A
PACKAGE
What can I do ? Urgent
please....
SQL> drop package
wwsso_home; drop package wwsso_home*ERROR at line
1:ORA-00600: internal error code, arguments: [16201], [], [], [], [],
[], [], []
SQL> drop package body
wwsso_home; drop package body wwsso_home*ERROR at
line 1:ORA-00600: internal error code, arguments: [16201], [], [], [],
[], [], [], []The
information contained in this communication isconfidential, is intended
only for the use of the recipientnamed above, and may be legally
privileged. If the reader of this message is not the intended recipient,
you arehereby notified that any dissemination, distribution orcopying
of this communication is strictly prohibited. If you have received this
communication in error, please re-send this communication to the sender
and delete the original message or any copy of it from your
computersystem.
Received on Tue Jan 08 2002 - 05:50:10 CST