From 64eae056f4adf652fdda8599131cccdd690f1f0b Mon Sep 17 00:00:00 2001 From: jake-mahon Date: Wed, 15 Oct 2025 21:18:19 -0400 Subject: [PATCH] Fixed "Error: Entra ID Replication Always Runs from Scratch Due to Domain Case Sensitivity" --- ...runs_from_scratch_due_to_domain_case_sensitivity.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/kb/directorymanager/error_entra_id_replication_always_runs_from_scratch_due_to_domain_case_sensitivity.md b/docs/kb/directorymanager/error_entra_id_replication_always_runs_from_scratch_due_to_domain_case_sensitivity.md index 6ff00e4246..386f076b7c 100644 --- a/docs/kb/directorymanager/error_entra_id_replication_always_runs_from_scratch_due_to_domain_case_sensitivity.md +++ b/docs/kb/directorymanager/error_entra_id_replication_always_runs_from_scratch_due_to_domain_case_sensitivity.md @@ -61,14 +61,14 @@ Because the check is case-sensitive, the system fails to find the existing times WHERE isr.IdentityStoreId = ; ``` - If you see `woodmenlife.org` (lowercase "w"), this confirms the mismatch. + If you see the domain in all lowercase letters (e.g., `domain.org`), this confirms the mismatch. - If the domain already matches the correct casing (`Woodmenlife.org`), no change is needed. + If the domain already matches the correct title case (e.g., `Domain.org`), no change is needed. 3. Backup the table (precaution): ```sql - SELECT * + SELECT * INTO dbo.IdentityStoreReplication_Backup_ FROM SVC.IdentityStoreReplication WHERE IdentityStoreId = ; @@ -83,7 +83,7 @@ Because the check is case-sensitive, the system fails to find the existing times AND Domain = 'domain.org'; ``` -5. Re-run the verification query from Step 2. The domain should now be stored as `Woodmenlife.org`. +5. Re-run the verification query from Step 2. The domain should now be stored in the proper case (e.g., `Domain.org`). 6. On the next replication cycle, confirm in the logs: @@ -99,4 +99,4 @@ Because the check is case-sensitive, the system fails to find the existing times ## Additional Notes - This issue is environment-specific and not widespread. -- If Directory Manager 11 Entra ID replication always runs from scratch, check the domain casing in **SVC.IdentityStoreReplication**. Correcting a single character in the domain field (lowercase “d” → uppercase “D”) restores delta replication and reduces runtime from hours to minutes. \ No newline at end of file +- If Directory Manager 11 Entra ID replication always runs from scratch, check the domain casing in **SVC.IdentityStoreReplication**. Correcting a single character in the domain field (lowercase “d” → uppercase “D”) restores delta replication and reduces runtime from hours to minutes.