Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-600

imran khanMar 4 2013 — edited May 2 2013
Hi all,

oracle DB version : 10.2.0.5.0
Linux version : RHEL 5.9

When trying to grant permission to a schema from SYS user on the package DBMS_JAVA it's throwing ORA-600 as follows:


DECLARE
KEYNUM NUMBER;
BEGIN
SYS.DBMS_JAVA.GRANT_PERMISSION(
grantee => 'ODB'
,permission_type => 'SYS:java.util.PropertyPermission'
,permission_name => 'javax.xml.transform.TransformerFactory'
,permission_action => 'write'
,key => KEYNUM
);
END;
Error at line 81
ORA-00600: internal error code, arguments: [13272], [], [], [], [], [], [], []
ORA-06512: at "SYS.DBMS_JAVA", line 272
ORA-06512: at line 4


What happen was instead of dropping the objects of the Schema ODB mistakenly i dropped few objects of SYS but it dropped only 30-30 tables which I suppose resolved once i ran catalog.sql and catproc.sql. Can anyone help me out in resolving the above error. I have also restarted the database but no luck.


Regards,
Imran Khan
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 30 2013
Added on Mar 4 2013
6 comments
116 views