Verifying That RTL Works

Learn how to check that RTL works.

  1. Log in to the primary Oracle data server and execute some operations, such as inserting new rows into testtab.
  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)