今天做expdp 导出的时候碰到一个ORA-39213的错误
ORA-39213: Metadata processing is not available
这个错误以前没有碰到过,文档上查询一下这个错误代码会有一个解决办法
39213, 00000, “Metadata processing is not available”
// *Cause: The Data Pump could not use the Metadata API. Typically,
// this is caused by the XSL stylesheets not being set up properly.
// *Action: Connect AS SYSDBA and execute dbms_metadata_util.load_stylesheets
// to reload the stylesheets.
reload stylesheets之后这个错误就消失了。
SQL> exec sys.dbms_metadata_util.load_stylesheets;
PL/SQL procedure successfully completed.
简记于此