ORA-26673: duplicate column name string ORACLE 报错 故障修复 远程处理
文档解释
ORA-26673: duplicate column name string
Cause: An attempt was made to specify a duplicate column name in an LCR.
Action: Remove the duplicate column and retry the operation.
官方解释
常见案例
比如,建表语句时定义重复的字段名称:
“`
create table tb_test(id number, name varchar2(30), id number, addr varchar2(30));
“`
一般处理方法及步骤
1、查看具体是“哪两个字段”重复定义了,并修改重复定义的字段名称以及字段类型;
2、重新执行建表语句;
3、确认表创建成功。