在客戶的oracle 10.2.0.1環境下要準備進行遷移數據庫,可是執行EXPDP的時候提示報錯數據庫
ORA-39006: internal errororacle
ORA-39213: Metadata processing is notavailableide
使用ORACLE用戶,查看ORA-39213 具體內容:測試
oerr ora 39213this
39213, 00000, "Metadata processing isnot available"it
// *Cause: The Data Pump could not use the Metadata API. Typically,io
// this is caused by the XSL stylesheets not being set up properly.class
// *Action: Connect AS SYSDBA and executedbms_metadata_util.load_stylesheetssed
// to reload the stylesheets.perl
根據提示,按以下操做
SQL> conn / as sysdba;
Connected.
SQL> executesys.dbms_metadata_util.load_stylesheets;
PL/SQL procedure successfully completed.
以後再執行EXPDP就再也不出現錯誤了,實際測試對在用的生產業務沒有影響,能夠放心使用