We are trying to setup an Azure Database Sync group to replicate our data from an on-premise server to an Azure SQL database. This as a first step for a migration to Azure.
The Sync Group and Sync Agent have all been set up. When we press the 'Sync' button we receive following error:
Trigger Sync Failed: Failed to perform data sync operation: Table '[dbo].[DocumentTypeDocumentVariables]' do not have clustered index.
This table did not have a clustered index but an unclustered unique primairy key index.
- We tried to add an clustered index but this give the same error.
- We tried to remove the unclustered PK index and created a unique clustered PK index but this gives us the same error.
What could be wrong ?