ORA-28673: Merge operation not allowed on an index-organized table
Cause: User attempted merge operation on an index-organized table. Merge is not supported on a IOT .
Action: Use updates and inserts on index-organized table .
ORA-28673:在索引组织表上不允许执行合并操作
当从或到指定的索引组织表时,MERGE 命令将引起错误 ORA-28673。该表只能使用 INSERT 和 UPDATE 命令进行更新。
当尝试从或到指定的索引组织表中使用MERGE时,将引发这个错误。
要解决这个错误,您可以使用 INSERT 和 UPDATE 语句替换 MERGE 语句。