An Azure relational database service.
@Alan Chan Admin 100 million records is a lot of records for an Initial Sync. Since there is data on the source database, as well as the target database, Data Sync will undergo a row-by-row conflict resolution process which is very slow. What I suggest is
- Remove the tables/large tables from the Sync Schema.
- Truncate the tables/large tables on the target database.
- Add the tables/target tables to the Sync Schema.
- Sync. By doing the above steps, you will be asking Data Sync to BULK INSERT the 100 million records from the source database tables/large table to the target database tables/large table, directly. Since there would be zero rows in the tables/large table on the target database, there would not conflicts, and BULK INSERT will happen. Please let me know if you still have any issues.
Regards
Geetha