From 095a5f58d6b807cb88a0963365c35bf81fe12423 Mon Sep 17 00:00:00 2001 From: FranciscoNabas <40699992+FranciscoNabas@users.noreply.github.com> Date: Wed, 26 Apr 2023 12:26:43 -0300 Subject: [PATCH] Update sql-replication.md The correct column name for the SQL Server maintenance mode query is 'SiteStatus' instead of 'Status' Correct query: SELECT * FROM ServerData WHERE SiteStatus = 120 --- .../core/servers/manage/replication/sql-replication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memdocs/configmgr/core/servers/manage/replication/sql-replication.md b/memdocs/configmgr/core/servers/manage/replication/sql-replication.md index 1a53dcbc3ee..8fe7df4dcd0 100644 --- a/memdocs/configmgr/core/servers/manage/replication/sql-replication.md +++ b/memdocs/configmgr/core/servers/manage/replication/sql-replication.md @@ -46,7 +46,7 @@ WHERE UpdateTime >@cutoffTime ```sql SELECT * FROM ServerData -WHERE Status = 120 +WHERE SiteStatus = 120 ``` ## Next steps