ORA-06512: at SYS.DBMS_METADATA_UTIL Error
If you face an error like the following while performing “impdp” operations:
Connected to: Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
ORA-39006: internal error
ORA-39065: unexpected master process exception in DISPATCH
ORA-01001: invalid cursor
ORA-06512: at "SYS.DBMS_METADATA_UTIL", line 3343
ORA-06512: at "SYS.KUPM$MCP", line 2636
ORA-39097: Data Pump job encountered unexpected error -1001
Solution:
execute the following command:
SQL> exec dbms_metadata_util.load_stylesheets;
If the above query executes sucessfully then try the “impdp” command again.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
SQL> exec dbms_metadata_util.load_stylesheets;
PL/SQL procedure successfully completed.
SQL>
Comments
Post a Comment