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
...
The conflict will be resolved. The OVERWRITE removes the "PRODUCT_NAME" condition from the WHERE clause and checks the target value only for existance existence of primary key columns column values (PRODUCT_ID).
The command console will no longer show the conflict and the apply process starts to apply other transactions:
...
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 |
...