Hi All,
I am running below update statement in proc --
update a
from
a,
tmp /*temporary table */
set flag = 'N'
where
a.COL1 = tmp.COL1 and
a.COL2 = tmp.COL2 and
a.flag <> 'N';
Error : - Update Failed :7547:Target row updated by multiple source rows
-------
Note:- for COL1,COL2 combination in where clause i am getting single row. So for COL1,COL2 combination only single row from table 'a' shud get updated
Please help.
↧