SSIS 2016 Supports Single-Package Deployment

One of the most anticipated features of SQL Server 2016 Integration Services (SSIS 2016) is support for deploying a single SSIS package from an SSIS project.

“Why Is This A Big Deal, Andy?”

I’m glad you asked. Consider the following scenario:

  • You deploy version 1 of an SSIS Project containing 20 SSIS Packages to Production.
  • You begin working on version 1.1 of the project, making changes to several of the packages and some tables.
  • A bug is discovered in one of the packages in Production.
  • Now what?

Hopefully you’ve been using source control and checking in regularly. If you have been using source control, you check in your current changes, perform a Get Specific Version to retrieve the version last deployed to Production. After you find and fix the bug – and test the fixes – you check in those changes and re-deploy to Production.

If you haven’t been using source control, you can export the project from Production and begin there.

There’s No Free Lunch

After checking in and deploying the Production fix you perform a Get Specific Version to retrieve the version of the Project that contains the code you were working on before you stopped to fix Production. And then you need to make a decision:

You are in an open field west of a minor version update to a data integration project. There is an SSIS Package here. Three paths diverge from your current location. The path to the north begins by manually re-applying the changes you just made to the SSIS package. The path to the south begins by manually re-applying the version 1.1 updates to the SSIS package you just updated and deployed to Production. The path east is marked with a sign that reads “MERGE CODE” but a hidden pit filled with hungry grues lies in that direction. </Zork>

  • You can start with your latest version of the SSIS package and manually re-apply the fix code.
  • You can start with a copy of the freshly-updated SSIS package (the one that had the bug previously) and manually re-apply the v1.1 updates.
  • I recommend you not try to branch and merge SSIS packages in source control.

What’s Different with SSIS 2016?

SSIS 2012 and 2014 required you to deploy the entire SSIS project to the Catalog in order to update a single SSIS package. SSIS 2016 allows developers to deploy only the impacted SSIS package. You can now check in the current version of your SSIS project, grab a Production version of the single SSIS package from source control, fix the bug, test it, check it it, and deploy only that package to Production – without impacting any of the other SSIS packages in your SSIS project.

One thought before moving on:

There are two types of developers: those who use source control and those who will. – Andy, circa 2015

Demo

To demonstrate, I created a test SSIS solution in SQL Server Data Tools for Visual Studio 2015 (October release) in SSIS 2016 (SQL Server 2016 CTP3). I started with a single SSIS package named Child1.dtsx and deployed the project to the SSIS Catalog.

I next added another package named Child2.dtsx. When I right-click Child2.dtsx in Solution Explorer, there’s a new (and awesome) context menu item – “Deploy Package”:

SSIS16DepPkg1

As in the past, the integration Services Deployment Wizard starts:

SSIS16DepPkg2

The Review page indicates we’re only deploying the Child2.dtsx package:

SSIS16DepPkg3

I was curious about how single-package deployment impacts the SSIS Catalog’s notion of SSIS Project version history. I made a small change to the Child2.dtsx SSIS package and redeployed it alone, again. Viewing the SSIS Catalog History for the project, I see three versions. This matches my expectations:

  1. Initial deployment of the single-package solution;
  2. Deployment of Child2.dtsx package; and
  3. Re-deployment of the Child2.dtsx package.

SSIS16DepPkg4

Conclusion

I like the new functionality – a lot! Kudos to the Microsoft Integration Services Development Team for this nifty new feature!

:{>

I am here to help:
Contact Andy!

Learn more:
Advanced SSIS Training with Andy Leonard & Tim Mitchell in Reston Virginia Dec 7 – 10, 2015

Stairway to Integration Services
Stairway to Biml

SSIS Design Patterns