Tejas Sutar
Tejas Sutar

Reputation: 777

How to migrate data from on premise database to Azure hosted database using ADF?

Question looks fairly simple but in my case it has some intricacies involved in it. So here is the deal:

Problems with current approach:

Creating staging table correspoding to each table doesn't look like a good idea. If number of tables in database increases, we need those many corresponding staging table.

Question:

Is there any better approach to handle this scenario with using ADF and without creating huge number of staging tables?

Upvotes: 0

Views: 421

Answers (1)

Alberto Morillo
Alberto Morillo

Reputation: 15608

You can try using SQL Data Sync instead and make SQL Data Sync just to sync in one direction, from on-premise to Azure SQL Database. When configuring SQL Data Sync choose "To the hub" on "Sync Directions" as shown on below image.

enter image description here

Upvotes: 2

Related Questions