ORA-30394: source statement identical to the destination statement ORACLE 报错 故障修复 远程处理
文档解释
ORA-30394: source statement identical to the destination statement
Cause: The source statement was identical to the destination statement
Action: Make sure both source and destination statements are not identical
Oracle错误ORA-30394表示无法将源SQL和目标SQL视为相同的。源SQL语句和目标SQL语句应具有相同的内容,但不能完全一样,否则会抛出此错误。
官方解释
常见案例
一般处理方法及步骤
1.检查源和目标SQL语句是否完全相同。
2.如果是,则修改源或目标以便两个不同。
3.在直接从一个表到另一个表导出数据时,存在一个“*”字符,需要从源表中将其替换为目标表中列名。
4.重新运行导出查询,如果COPY成功,则一切正常完成。