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!

Error while create ACL List: ORA-00600, ORA-64131, ORA-30966, ORA-31011, ORA-06512

dbapeOct 20 2016 — edited Nov 30 2016

Hi friends,

I have a oracle database 11.2.0.1.0 standar edition 64bits on windows server 2012 r2 64bits.

I have tried to create a ACL List to use smtp package to send email from a pl/sql package.

When I try to create the acl list, it show me the follow error:

SQL> BEGIN

  2     DBMS_NETWORK_ACL_ADMIN.CREATE_ACL (

  3        acl           => 'smtp_office365_com.xml',

  4        description   => 'Permiso para accesar  e-mail server smtp.office365.com.',

  5        principal     => 'PUBLIC',

  6        is_grant      => TRUE,

  7        privilege     => 'connect');

  8     COMMIT;

  9  END;

10  /

BEGIN

*

ERROR at line 1:

ORA-00600: internal error code, arguments: [kzxcInitLoadLocal-7], [64131],

[ORA-64131: XMLIndex Metadata: failure during the looking up of the dictionary

ORA-30966: error detected in the XML Index layer

ORA-31011: XML parsing failed

], [], [], [], [], [], [], [], [], []

ORA-06512: at "SYS.DBMS_NETWORK_ACL_ADMIN", line 252

ORA-06512: at line 2

SQL>

I have been looking for this issue on internet and in many page people said this is a "bug", but I create a new database with the same specification and it error does not appear.

Please, anyone have any idea.

Regards,

DBApe.

This post has been answered by Gbenga Ajakaye on Nov 14 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 12 2016
Added on Oct 20 2016
1 comment
1,020 views