expdp導出時有以下報錯:sql
Export: Release 11.2.0.1.0 - Production on Wed Feb 5 09:55:13 2020 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options ORA-39006: internal error ORA-39213: Metadata processing is not available
按照提示進行操做,解決問題:bash
根據oerr ora 39213提示,執行exec dbms_metadata_util.load_stylesheets;oracle
[oracle@data ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.1.0 Production on Wed Feb 5 09:59:26 2020 Copyright (c) 1982, 2009, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL> execute dbms_metadata_util.load_stylesheets; PL/SQL procedure successfully completed. SQL> exit Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options
再進行導出正常,問題解決。ide