May 20, 2014 at 7:56 am
i configured replication , how to validate the data whether the publisher and subscriber are both in sync ?
May 20, 2014 at 8:04 am
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."
May 20, 2014 at 8:12 am
thanks for the reply How to check in monitor and is any query to run in the pub\subscriber to validate ?
May 20, 2014 at 8:38 am
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