ORA-600
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