简体   繁体   中英

Azure Sync not reflecting changes in on-premises database

I have installed sync agent client on my local machine, and configured the sync between the azure SQL db and on-premises database.

In the Azure portal, I have set the sync timing to 5 minutes. and as of now, I am just syncing between one table.

In the sync logs, The details are : Sync completed successfully in x.xx seconds.

In the conflict resolution, I have set it to Member win. I tried with Hub win also and it is Bi-Directional sync.

Whenever i insert something in the table in Azure Db, after the sync, those changes are not reflected in the on-premises db.

Also, is there any way to check detailed logs of the Azure sync group?

Please check and make sure that you've selected the columns/tables that you're inserting too for syncing.

Did you make any schema changes? These must be resolved manually.

Also please check to confirm that your local agent is online. Best, Josh

Try this code on the Azure database (Hub) and see if it works:

ALTER DATABASE [database name]
SET ALLOW_SNAPSHOT_ISOLATION ON

How many sync groups associating with the specific table?

Typically this issue is encountered while associating another sync group with the same table. If you use bi-directional sync, try to prevent other sync groups associate with the bi-directional table. If you did any changes or deleted records or tables from the DataSync.table_dss_tracking table, please delete the sync group and re-create it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM