Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The replicated SQL that is applied on the target database is as follows (note the WHERE clause contains the old value of AMOUNT_RECEIVED):

Section
Column
width5%

 

Column
width95
Panel
bgColorCCC
update SALES
set AMOUNT_RECEIVED = 120
where (1=1)
and AMOUNT_RECEIVED = 250 
and PROD_ID = 101;

...