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

来源:这里教程网 时间:2026-03-03 18:06:56 作者:

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

相关推荐