從oracle 12c 備份(expdp)出來的包,還原到11g裡,想想都知道會有兼容性問題。
果不其然,報錯了:
ORA-39142: 版本號 4.1 (在轉儲文件 “叉叉叉.expdp” 中) 不 兼容
之類
後來才知道,在12C中備份出來時,應指定版本信息,例如我要導進11g的庫(具體版本為11.1.0.6.0,打開sqlplus就能看到),則version=11.1.0.6.0
語句:
在12C備份
expdp system/password@SID12c directory=dbbak dumpfile=20160321.expdp logfile=20160321.log schemas=leftfist version=11.1.0.6.0
在11g中還原
impdp sys/password@SID11g directory=dbbak dumpfile=20160321.expdp logfile=20160321.log schemas=leftfist table_exists_action=replace
當然這裡面忽略了創建備份文件存放目錄dbbak,創建表空間、用戶等細節。這類細節可參考拙作
oracle 10g的備份和還原
參考文章:
ORA-39142 IMPDP跨版本導入數據報錯解決