Azure Data Factory

salilsingh-9961 346 Reputation points
2021-03-31T04:36:04.28+00:00

Hi Team,

I need to sync my on-premises SQL Server db to Azure SQL db.
Can I use Azure data factory for this purpose?
Could you please provide me with a link that shows how to implement Azure data factory for above mentioned requirement?

Thanks,
Salil

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
9,532 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Nandan Hegde 29,886 Reputation points MVP
    2021-03-31T05:14:45.557+00:00

    Hey @salilsingh-9961 ,
    You can create Pipelines with Copy activity with On Prem SQL server as source and Azure SQL Database as sink.
    https://learn.microsoft.com/en-us/azure/machine-learning/team-data-science-process/move-sql-azure-adf
    https://www.sqlshack.com/copy-data-from-on-premises-data-store-to-an-azure-data-store-using-azure-data-factory/

    But ideally this approach for syncing on prem and Azure SQL DB would have certain challenges as below:

    1) For every table you need to sync, you need to create a copy activity mapping the source and sink
    2) since the source is on prem, you would need an additional VM which would host the ADF integration run time (thereby additional cost)
    3) Scheduling the jobs? you can schedule jobs daily to sync all the tables
    Rather than that you can think of Azure Data sync option

    1 person found this answer helpful.

  2. Vaibhav Chaudhari 38,576 Reputation points
    2021-03-31T06:26:00.647+00:00

    Refer this to copy multiple tables using ADF

    https://learn.microsoft.com/en-us/azure/data-factory/tutorial-bulk-copy-portal

    ----------

    Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav

    1 person found this answer helpful.
    0 comments No comments