Home | Previous Page | Next Page   Appendix E. Replication Examples > Primary-Target Example >

Cause a Replication

Now you can modify the manufact table on the usa database server and see the change reflected in the manufact table on the italy database server.

To cause a replication
  1. Use DB–Access to insert a value into the manufact table on usa:
    INSERT INTO stores@usa:manufact \
    VALUES ('AWN','Allwyn','8');
  2. Observe the changes on usa and on italy:
    SELECT * from stores@usa:manufact
    SELECT * from stores@italy:manufact
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]