ORA-23672: Column not specified in column group for DML conflict handling for table “string”.”string”
Cause: The specified table contained a column that was not specified as part of a column group.
Action: Add the column to a column group.
?
这个错误表明,在执行一个DML(数据操纵语言)操作时,没有指定表中的列到列组中,以便在冲突处理时使用。
1)根据表结构,在表中指定需要处理冲突时使用的列;
2)将这些列添加到列组,以便在执行DML操作时进行冲突处理;
3)使用EXCLUDE_ON_CONFLICT子句执行DML操作,以便处理冲突;
4)重新运行DML操作,以便能够处理可能出现的冲突。