資料庫建立元件時報錯ORA-30554: XDB.XDB$ACL_XIDX is disabled

xianhua_33發表於2022-04-02

現象:

Creation of ACL with DBMS_NETWORK_ACL_ADMIN.CREATE_ACL is failing with error:

ORA-30554: function-based index XDB.XDB$ACL_XIDX is disabled

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

ORA-06512: at line 2

問題原因:

Functional Index XDB$ACL_XIDX is disabled.So its causing error ORA-30554.

SQL> select owner, index_name, index_type,

2  table_owner, table_name, status,

3  funcidx_status

4  from dba_indexes

5  where index_name = 'XDB$ACL_XIDX';

OWNER                INDEX_NAME                     INDEX_TYPE

-------------------- ------------------------------ ---------------------------

TABLE_OWNER                    TABLE_NAME                     STATUS   FUNCIDX_

------------------------------ ------------------------------ -------- --------

XDB                  XDB$ACL_XIDX                   FUNCTION-BASED DOMAIN

XDB                            XDB$ACL                        VALID    DISABLED

處理方法:

Enable the Functional index XDB.XDB$ACL_XIDX.

SQL> conn / as sysdba

SQL> alter index xdb.XDB$ACL_XIDX enable;

Run the DBMS_NETWORK_ACL_ADMIN.CREATE_ACL again.


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69950318/viewspace-2885483/,如需轉載,請註明出處,否則將追究法律責任。

相關文章