December 2015
Intermediate to advanced
760 pages
14h 31m
English
This recipe will download an SSIS package back to a .dtsx file.
Locate a package stored in the package store that you want to download to the filesystem. Note the path to this package.
These are the steps required to download an SSIS package:
ManagedDTS assembly as follows:#add ManagedDTS assembly Add-Type -AssemblyName "Microsoft.SqlServer.ManagedDTS, Version=12.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"
$server = "localhost" #create new app $app = New-Object "Microsoft.SqlServer.Dts.Runtime.Application" $timestamp = Get-Date -format "yyyy-MMM-dd-hhmmtt" $destinationFolder = "C:\SSIS\SSIS ...
Read now
Unlock full access