Deploying an ISPAC file to SSISDB
You will see how to deploy an ISPAC file to SSISDB.
Getting ready
In this recipe, we will deploy a deployment Customer Package Project.ispac
package file. Alternatively, pick an available ISPAC file in your environment that you want to use. In this recipe, change the $ispacFilePath
variable's value to reflect your file.
How to do it...
Let's explore the code required to deploy an ISPAC file:
- Open PowerShell ISE as an administrator.
- Import the SQLPS module as follows:
#import SQL Server module Import-Module SQLPS -DisableNameChecking
- Load the
IntegrationServices
assembly as follows:Add-Type -AssemblyName "Microsoft.SqlServer.Management.IntegrationServices, Version=12.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" ...
Get SQL Server 2014 with PowerShell v5 Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.