A Microsoft platform for building enterprise-level data integration and data transformations solutions.
Hi @puri puri ,
You have only two practical ways to do this.
Using Azure database migration service (DMS)
- Keep packages in SSISDB (Project model) on-prem.
- Create managed instance.
- Create Azure data factory + azure-SSIS integration runtime (mandatory).
- Create DMS project - source: SQL server - target: managed instance - SSIS migration run.
Best for bulk migration. Manual deployment
- Build project - generate .ispac.
- Deploy to SSISDB in managed instance using SSMS.
- Configure Azure-SSIS IR.
- Test and schedule.
Better for small setups / more control.
Important: Managed Instance alone cannot run SSIS. Azure-SSIS integration runtime is required in both cases.
Thanks,
Akhil.