ORA-30926: unable to get a stable set of rows in the source tables
ORA-30926: 无法在源表中获得一组稳定的行。
原因比较简单,因为在merge into时需要设定一个key值,会根据这个key值来决定merge into的操作(update还是insert into),所以要求在merge时这个key值是唯一的。所以要先从临时表中选出全部数据而且key值是唯一的。
--刘轶鹤
内容搜索来自于网络
ORA-30926: unable to get a stable set of rows in the source tables
ORA-30926: 无法在源表中获得一组稳定的行。
原因比较简单,因为在merge into时需要设定一个key值,会根据这个key值来决定merge into的操作(update还是insert into),所以要求在merge时这个key值是唯一的。所以要先从临时表中选出全部数据而且key值是唯一的。
--刘轶鹤
内容搜索来自于网络