Skip to content

Commit f4e374e

Browse files
Merge pull request #282 from netwrix/kb/fix-kA0Qk000000312nKAA
Fixed "Error: Entra ID Replication Always Runs from Scratch Due to Domain Case Sensitivity"
2 parents cba02ce + 1e9a6f9 commit f4e374e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/kb/directorymanager/error_entra_id_replication_always_runs_from_scratch_due_to_domain_case_sensitivity.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ Because the check is case-sensitive, the system fails to find the existing times
6161
WHERE isr.IdentityStoreId = <IdentityStoreId>;
6262
```
6363

64-
If you see `Domain.org` (lowercase "d"), this confirms the mismatch.
64+
If you see the domain in all lowercase letters (e.g., `domain.org`), this confirms the mismatch.
6565

66-
If the domain already matches the correct casing (`Domain.org`), no change is needed.
66+
If the domain already matches the correct title case (e.g., `Domain.org`), no change is needed.
6767

6868
3. Backup the table (precaution):
6969

7070
```sql
71-
SELECT *
71+
SELECT *
7272
INTO dbo.IdentityStoreReplication_Backup_<yyyymmdd>
7373
FROM SVC.IdentityStoreReplication
7474
WHERE IdentityStoreId = <IdentityStoreId>;
@@ -83,7 +83,7 @@ Because the check is case-sensitive, the system fails to find the existing times
8383
AND Domain = 'domain.org';
8484
```
8585

86-
5. Re-run the verification query from Step 2. The domain should now be stored as `Domain.org`.
86+
5. Re-run the verification query from Step 2. The domain should now be stored in the proper case (e.g., `Domain.org`).
8787

8888
6. On the next replication cycle, confirm in the logs:
8989

@@ -99,4 +99,4 @@ Because the check is case-sensitive, the system fails to find the existing times
9999
## Additional Notes
100100

101101
- This issue is environment-specific and not widespread.
102-
- 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.
102+
- 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.

0 commit comments

Comments
 (0)