Migrating from ADF to SSIS

Sinah Molepo 20 Reputation points
2023-11-13T13:36:11.74+00:00

I have been using the Azure Data Factory as the ETL tool but I would like to downgrade/migrate to the on-prem SSIS due to business decision. Is there a way to go about this except re-writing the pipelines? Maybe a lift and shift solution?

All the solutions I see is migrating from SSIS to ADF only.

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
10,024 questions
SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,504 questions
SQL Server Migration Assistant
SQL Server Migration Assistant
A Microsoft tool designed to automate database migration to SQL Server from Access, DB2, MySQL, Oracle, and SAP ASE.
507 questions
{count} votes

Accepted answer
  1. Sidney Hodieb 85 Reputation points
    2023-11-14T11:04:14.38+00:00

    Migrating from ADF to SSIS is not a common scenario, and there isn’t a direct lift-and-shift solution available. The architectures of ADF and SSIS are fundamentally different, and they use different methods for data transformation and movement.

    ADF is a cloud-based ETL tool that uses a wide range of connectors and activities for data movement and transformation. On the other hand, SSIS is an on-premises ETL tool that uses packages for data integration1.

    While there are tools and guides available for migrating from SSIS to ADF, the reverse is not typically done and would likely require rewriting your pipelines in SSIS. This is because SSIS packages are more granular and procedural, while ADF pipelines are more declarative.

    Before proceeding, I would recommend thoroughly evaluating the reasons for this migration and considering the effort it would take to rewrite your pipelines in SSIS. If you have complex pipelines in ADF, rewriting them in SSIS could be a significant undertaking.

    1 person found this answer helpful.
    0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Nandan Hegde 30,871 Reputation points MVP
    2023-11-13T14:00:23.18+00:00

    Hey, unfortunately there is no direct mapping between ssis and ADF. You would have to manually reciprocate your add pipeline logic in ssis

    0 comments No comments

  2. ZoeHui-MSFT 34,836 Reputation points
    2023-11-14T01:47:37.0466667+00:00

    Hi @Sinah Molepo,

    As far as i known, we could migrate from SSIS to ADF easily.

    We could not migrate from ADF to SSIS directly.

    Regards,

    Zoe Hui


    If the answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

  3. Sinah Molepo 20 Reputation points
    2023-11-16T10:29:05.51+00:00

    Thank you so much

    0 comments No comments