Contents
How do you monitor Replication?
Connect to the Subscriber in Management Studio, and then expand the server node. Expand the Replication folder, and then expand the Local Subscriptions folder. Right-click the subscription you want to monitor, and then click View Synchronization Status.
What is repadmin command?
Repadmin is a cmd application for diagnosing AD replication issues. Via Repadmin it is easy to view replication topology for every domain controller. And use this knowledge to manually change it and initiate replication communications between controllers.
How to find out, from the subscriber?
My database is a subscriber to one or more publishers. But I don’t have access to the publisher or distributor. My question is, which views (or system tables, DMV’s or stored procs, etc) are available on the subscriber so that I can use T-SQL to identify which tables are populated via replication or replication subscribers?
How to run replication script on Publisher Database?
Script to run on Publisher database – This script returns what publications have been setup. Script to run on Subscriber database – This script returns what article (s) is/are being replicated to the subscriber database. I also use this to find any orphaned subscribers. This script returns completed setup replication information.
Do you get a complete set of replication information?
Unless an orphan article exists, this will return a complete set of replication information. I also added the distribution agent job name to show how easy it is to pull in other configuration information.
What do I need to know about SQL server replication?
Sometimes, I just want to see the publication name and subscriber server names (no articles) to see what servers are being used with replication other times I want all of the information, so I added a variable called @Detail and if you set @Detail = ‘Y’ it will return data with the article list.