Deploying SSIS packages with SQL Server Management Studio

Overview

SQL Server Management Studio (SSMS) can be used to deploy SSIS packages to SQL Server or to the Package Store.

Explanation

To begin, launch SSMS and connect to Integration Services.  Note that the SQL Server Integration Services service must be running in order to do this.  You will see the following in the Object Explorer:

sms ssis object explorer

As you can see, there are two nodes under Stored Packages: File System and MSDB.  File System is actually the package store with a default location in SQL Server 2005 of C:\Program Files\Microsoft SQL Server\90\DTS\Packages.  MSDB is, of course, the MSDB database.

In the examples that follow, we will deploy the CreateSalesForecastInput.dtsx package from its location in the project folder to the package store and the MSDB database.

To deploy to the package store, right-click on the File System node and select Import package from the pop-up menu.  Fill in the Import Package dialog as shown below:

sms import package store

Click OK to import the package.

To deploy to the MSDB database, right-click on the MSDB node and select Import package from the pop-up menu.  Fill in the Import Package dialog as shown below:

sms import msdb

Leave a Reply

Your email address will not be published. Required fields are marked *