Something wrong with the ChangeTracking sync feature
See original GitHub issueWhen using the change tracking sync feature, I get every time the exception that the “_tracking” table is not found.
This is probably because the SqlSyncChangeTrackingProvider inherits from the SqlSyncProvider.
In this provider the method GetParsers checks for this table which in this configuration does not exist.
Am I missing something here?
Issue Analytics
- State:
- Created 2 years ago
- Comments:17 (8 by maintainers)
Top Results From Across the Web
Extract changes in feature service
I have a table with data from the survey that can be edited by the supervisor, however we want to keep the initial...
Read more >Troubleshoot issues during initial synchronization
This article provides troubleshooting information that can help you fix issues that might occur during initial synchronization.
Read more >Validating SQL Server Change Tracking Synchronization
The problem I'm having is that it is intermittently detecting that the values don't match on tables that experience very rapid updates.
Read more >sql - Change Tracking doesn't track deletes in ...
I'm syncing data from SQL server A towards SQL server B. Sometimes data gets removed in the source, to prevent that I have...
Read more >Sync SQL Server Change Tracking Tables without ...
The CHANGETABLE (CHANGES) function: Returns tracking information since the version specified. The parameter are the table name and the change version number.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

https://github.com/IsmailHassani/SyncDemo/blob/b66df53e34d8326198eea4cd258cc699fc231c92/SyncDemoClient/Services/SynchronizationService.cs#L137
There is a call to UpdateUntrackedRowsAsync which is not meant for the SqlSyncChangeTrackingProvider
Thank you for the clear explanation.