Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 3.31 KB

File metadata and controls

45 lines (33 loc) · 3.31 KB
title Deploy SSIS packages
description Learn how to deploy and run SSIS packages in Azure Data Factory with the Azure-SSIS integrated runtime.
ms.subservice integration-services
ms.topic how-to
ms.date 10/20/2023
author chugugrace
ms.author chugu
ms.custom

Deploy SSIS packages

After configuration of your Azure-SSIS integration runtime, you can deploy and run packages in Azure directly.

Using SSISDB

If you use SSISDB, you can deploy your packages into it and run them on your Azure-SSIS IR by using the Azure-enabled SSDT or SSMS tools. These tools connect to your database server via its server endpoint:

  • For an Azure SQL Database server, the server endpoint format is <server name>.database.windows.net.
  • For a managed instance with private endpoint, the server endpoint format is <server name>.<dns prefix>.database.windows.net.
  • For a managed instance with public endpoint, the server endpoint format is <server name>.public.<dns prefix>.database.windows.net,3342.

Using file system, Azure files, or MSDB

If you don't use SSISDB, you can deploy your packages into file system, Azure Files, or MSDB hosted by your Azure SQL Managed Instance and run them on your Azure-SSIS IR by using dtutil and AzureDTExec command-line utilities.

For more information, see Deploy SSIS projects/packages.

In both cases, you can also run your deployed packages on Azure-SSIS IR by using the Execute SSIS Package activity in Data Factory pipelines. For more information, see Invoke SSIS package execution as a first-class Data Factory activity.

Related content

See other Azure-SSIS IR topics in this documentation: