Versions Compared

Key

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

...

No Format
SQL> insert into sales values ( 101, 201, 233, 1299, null, 'overdueOVERDUE');
insert into sales values ( 102, 301, 30, 1099, 1099, 'paidPAID');
insert into sales values ( 103, 401, 30, 120, 120, 'paidPAID');
insert into sales values ( 104, 401, 40, 160, null, 'overdueOVERDUE');
commit;

3. The replication console will show the new table. The DDL and the DML will be replicated so the table will be in sync on the target database

...

No Format
sqlplus oe/oe
SQL> select * from sales;
   PROD_ID    CUST_ID QUANTITY_SOLD AMOUNT_SOLD AMOUNT_RECEIVED SALES_STAT
---------- ---------- ------------- ----------- --------------- ----------
       101	  201		233	   1299 		overdueOVERDUE
       102	  301		 30	   1099 	   1099 paidPAID
       103	  401		 30	    120 	    120 paidPAID
       104	  401		 40	    160 		overdueOVERDUE