Versions Compared

Key

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

...

Check on target database that the row does not exist on the target:

Code Block
languagesql
titleCheck if CARD_TYPE REPOE_TEST does exist on target database
select count(*) from REPOE.CARD_DETAILS where card_type='REPOE_TEST';
  COUNT(*)
----------
         0

...

Open any SQL tool, connect as repoe/repoe@TTORCL_SRC to source database and run following command:

Code Block
languagesqltitleSimple insert operation
REPOE@TTORCL_SRC> insert into REPOE.CARD_DETAILS (card_id, customer_id, card_type, card_number, expiry_date, is_valid, security_code)
2 values (CARD_DETAILS_SEQ.nextval, 1287, 'REPOE_TEST', 9102450385, sysdate, 'Y', 1000 );
1 row created.
REPOE@TTORCL_SRC> commit;
Commit complete.

Now look at the dbvrep console, if the row was successfully replicated;

Output of dbvrep console
Code Block
title
Progress of replication repoe:MINE->APPLY: total/this execution
------------------------------------------------------------------------------------------------------------------
REPOE.CARD_DETAILS:           100%  Mine:1/1             Unrecov:0/0         Applied:1/1         Conflicts:0/0       
Last:22/01/2015 23:23:54/OK
------------------------------------------------------------------------------------------------------------------

...