ORA-39358: Export dump file version 12.1.0 not compatible with target version 11

ywxj_001發表於2022-11-14

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了。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22996654/viewspace-2923221/,如需轉載,請註明出處,否則將追究法律責任。

相關文章