validate data

  • i configured replication , how to validate the data whether the publisher and subscriber are both in sync ?

  • You can check the status in Replication monitor

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • thanks for the reply How to check in monitor and is any query to run in the pub\subscriber to validate ?

  • I usually run this query on both sides and monitor its progress. It would be helpful if you have two monitors

    select SCHEMA_NAME = left(s.name,30),

    table_name = left(t.name,80),

    records = i.rows

    from sys.schemas s

    join sys.tables t on s.schema_id = t.schema_id

    left join sys.sysindexes i on t.object_id = i.id

    and i.indid in (0,1)

    order by i.rows desc

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply