Skip to content

Execute SSIS

Description

The Execute SSIS activity allows you to run SQL Server Integration Services (SSIS) packages within your workflow. SSIS is a powerful data integration tool used to move, transform, and cleanse data across systems.

This activity executes an SSIS package stored in SQL Server and returns the output for further workflow processing. Parameters can be passed to dynamically configure the package during runtime.

Use Case:
Use this activity when you want to reuse your existing ETL logic built in SSIS from within a modern workflow — for example, moving data from OLTP to a warehouse or applying business rule transformations.


Input

TypeDescription
FileSSIS package configuration

Output

TypeFormatDescription
Execution DataTableOutput generated from the executed SSIS task

Configuration Fields

Field NameRequiredDescription
ConnectionYesConnection settings for SQL Server with SSIS access.
PackageYesName of the SSIS package to execute from the configured catalog or folder.
ParamsNoKey-value pairs for package parameters (if required).

Sample Input

Not applicable — the package is retrieved and executed directly via the provided connection.


Sample Configuration

FieldValue
ConnectionSQLServer-Prod
PackageLoadCustomerData.dtsx
Params{"Region": "West", "Year": 2025}

Sample Output

StatusMessageRecords Processed
SuccessSSIS Package executed12500
SuccessData moved to warehouse12500