Verifying That RTL Works

Learn how to check that RTL works.

  1. Log in to the primary data server and execute some operations, such as inserting new rows into testtab.
    For example, in Adaptive Server:
    insert into testtab values(4,4,'testrow 4')
    insert into testtab values(5,5,'testrow 5')
    insert into testtab values(6,6,'testrow 6')
    go
    You should see:
    (1 row affected)
    (1 row affected)
    (1 row affected)
  2. Log in to Sybase IQ and verify that the changes to testtab have replicated to the Sybase IQ database:
    select * from dbo.testtab
    go
    If replication is successful, you see:
    c1           c2           c3
    ---------    ---------    ---------
    1            1            testrow 1
    2            2            testrow 2
    3            3            testrow 3
    4            4            testrow 4
    5            5            testrow 5
    6            6            testrow 6
    (6 rows affected)