Versions Compared

Key

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

Resolve the conflict. There are different options to resolve the conflict. They All options can be viewed here: Resolving Current Conflict.

In our case because we have to choose, which value do we need on target database. We decided, that we want to have both databases in sync, so we choose OVERWRITE method as a conflict resolution: conflict id in our case is 65010063922 

...

Compare both tables on source and target and verify that they are the same:

No Format
REPOE@ttorcl_src>REPOE@SOURCE> select product_id, product_name from repoe.product_information where product_id=100;
PRODUCT_ID PRODUCT_NAME
---------- --------------------------------------------------
       100 Dbvisit Replicate


REPOE@TTORCL_TRG>REPOE@TARGET> select product_id, product_name from repoe.product_information where product_id=100;
PRODUCT_ID PRODUCT_NAME
---------- --------------------------------------------------
       100 Dbvisit Replicate

...