ORA-39358: Export dump file version 12.1.0 not compatible with target version 11.2.0
一般原因是目标库是手工建库:
SQL> show parameter COMPATIBLE;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
compatible string 11.2.0
在pfile文件修改:
compatible ='12.1.0'
重启数据库实例。
create spfile from pfile;
SQL> show parameter COMPATIBLE;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
compatible string 12.1.0
源和目标库的版本一致,可以做impdp了。