December 2015
Intermediate to advanced
760 pages
14h 31m
English
In this recipe, we will execute an SSIS package using PowerShell.
In this recipe, we will execute the Customer Package, which is saved in the package store, and we will also execute the C:\SSIS\SamplePackage.dtsx file directly from the filesystem.
Alternatively, you can locate an available SSIS package in your system that you want to execute instead. Identify whether this package is stored in the filesystem or in the SSIS package store.
Let's explore the code required to execute an SSIS package programmatically using PowerShell:
ManagedDTS assembly as follows:#add ManagedDTS assembly Add-Type -AssemblyName "Microsoft.SqlServer.ManagedDTS, ...
Read now
Unlock full access