Answers for "ORA-30926: unable to get a stable set of rows in the source tables"

0

ORA-30926: unable to get a stable set of rows in the source tables

MERGE INTO table_1 a
      USING 
      (SELECT distinct ta.ROWID row_id
              FROM table_1 a ,table_2 b ,table_3 c
              WHERE a.mbr = c.mbr
              AND b.head = c.head
              AND b.type_of_action <> '6') src
              ON ( a.ROWID = src.row_id )
  WHEN MATCHED THEN UPDATE SET in_correct = 'Y';
Posted by: Guest on March-23-2022

Code answers related to "ORA-30926: unable to get a stable set of rows in the source tables"

Browse Popular Code Answers by Language