0

当我使用合并语句时,我得到了错误。

Error code 30926, SQL state 99999: ORA-30926: unable to get a stable set of rows in the source tables

这是我的查询:

merge into dept_fc_link l 
using 
(select distinct dept_id,f_id,stk_point from temp_dept_fc_link) t 
on (l.dept_id = t.dept_id) 
when matched then 
update set l.stk_point = t.stk_point 
when not matched then 
insert(l.dept_id,l.f_id,l.stk_point) values(t.dept_id,t.f_id,t.stk_point);

能指出我的错误吗?

4

1 回答 1

0

通常当您在查询中有重复时会发生这种错误,换句话说,在 using 子句中的查询对于 on 子句中的连接条件返回超过 1 行。我不知道你的数据,但它是一个很好的猜测。

于 2015-07-02T19:43:31.340 回答