To trochę trudna sprawa. Głównym powodem jest to, że wydaje się, że masz duplikaty w kolumnie TMP_DP_REGIAO.DS_PROTHEUS_CODE, a MERGE kilka razy próbuje zaktualizować ten sam wiersz tabeli docelowej. Ale jeśli nowe wartości i stare wartości w zaktualizowanych kolumnach są takie same, Oracle może pominąć ten problem z duplikatami:
SQL> select * from t;
CODE TEXT
---------- ----------
1 test
SQL> merge into t using (
2 select 1 code,'test' text from dual union all
3 select 1 code,'test' text from dual
4 ) s
5 on (t.code = s.code)
6 when matched then
7 update set t.text = s.text
8 /
2 rows merged
Ale jeśli stare i nowe wartości są różne, Oracle zgłasza wyjątek:
SQL> merge into t using (
2 select 1 code,'a' text from dual union all
3 select 1 code,'a' text from dual
4 ) s
5 on (t.code = s.code)
6 when matched then
7 update set t.text = s.text
8 /
merge into t using (
*
error in line 1:
ORA-30926: unable to get a stable set of rows in the source tables