Edit

Troubleshoot Database Replication Service links

In a multi-site hierarchy, Configuration Manager uses Database Replication Service (DRS) to transfer data between sites. For more information, see Database replication.

Use the following diagram to start troubleshooting DRS replication when a link fails:

Diagram of a decision tree to troubleshoot SQL Server replication.

Queries

This diagram uses the following queries:

SELECT * FROM RCM_ReplicationLinkStatus
WHERE Status IN (8, 9)
DECLARE @cutoffTime DATETIME
SELECT @cutoffTime = DATEADD(minute, -30, GETUTCDATE())
SELECT * FROM RCM_ReplicationLinkStatus
WHERE UpdateTime >@cutoffTime

Check SQL Server maintenance mode

SELECT * FROM ServerData
WHERE SiteStatus = 120

Next steps