ORA-39111: Dependent object type string skipped, base object type string already exists ORACLE 报错 故障修复 远程处理
文档解释
ORA-39111: Dependent object type string skipped, base object type string already exists
Cause: During a Data Pump import job, a dependent object is being skipped because its base object already existed.
Action: If the object from the dump file is wanted, drop the base and dependent objects and try to import again using desired filters.
ORA-39111: Dependent object type string skipped, base object type string already exists是在使用Data Pump Export(EXPDP)时会遇到的一个错误,该错误提示类型依赖于其他对象的对象一旦发现与依赖的对象定义相同的基础对象,则忽略该依赖的对象。
官方解释
常见案例
一般处理方法及步骤
1.首先检查要导入的数据库是否已经存在相同的对象,如果存在,则查询该对象,并断定是否为正确的对象和定义;
2.将报错信息及其相关脚本记录到操作日志;
3.对导入对象进行调整,可以更改相应的对象名称,调整配置参数,以解决这一问题;
4.完成前面的调整后,尝试再次导入对象。