ORA-39129: Object type string not imported. Name conflicts with the master table ORACLE 报错 故障修复 远程处理
文档解释
ORA-39129: Object type string not imported. Name conflicts with the master table
Cause: The table being imported from the remote instance has the same name as the master table running this Data Pump job.
Action: Rerun the Data Pump job with a nonconflicting name.
ORA-39129: 对象类型字符串无法导入,因为其名称与主表冲突。
官方解释
ORA-39129是典型的唯一性错误,当您尝试导入具有重复名称的对象时,您将收到该错误。必须为对象生成唯一的名称。
常见案例
当在使用带有重复名称的EXPDP或IMPDP时发生此错误时则会发生此错误。
一般处理方法及步骤
1.确认无误的对象名称。
2.使用以下参数以生成对象的唯一名称:
REMAP_OBJECT_AS_NAME
REMAP_TABLE_NAME
3.将新名称使用以下参数进行重命名:
RENAME
4.再次执行Expdp或Impdp命令。