SSIS Package Deployment using BIDS

This article will show you the step-by-step approach for SSIS Package Deployment using BIDS or SQL Data Tools.

For this demonstration, we use the following Integration Service project. As you can see, it has a one and only package.

SSIS Package Deployment using BIDS 0

Before we start deploying the project, let me show you the configuration of the SSIS package. From the below screenshot, you can see that it has one Data Flow task

SSIS Package Deployment using BIDS 1

In the Data Flow region, it has one OLE DB Source and OLE DB Destination

SSIS Package Deployment using BIDS 2

Let me double-click on the OLE DB Source so you can see the table we used as a source. From the below screenshot, you can see that we used the Employee Duplicate table present in the Database. I suggest you refer to the OLE DB Source article to understand the configuration settings.

SSIS Package Deployment using BIDS 3

Let me double-click on the OLE DB Destination to see the destination Table we used. The screenshot below shows that we used the Load Data From SQL table present in the SQL Tutorial Database. Therefore, I suggest you refer to the OLE DB Destination article to understand the destination configuration settings.

SSIS Package Deployment using BIDS 4

SSIS Package Deployment using BIDS

To perform SSIS package Deployment using BIDS or Data Tools, navigate to the Solution Explorer window. Here, right-click on the Project and select the Deploy option from the context menu.

SSIS Package Deployment using BIDS 5

Once you select the Deploy option, a new window called Integration Services Deployment Wizard will be opened, as we have shown below. This is an introduction page, and by clicking the Do not Show this Page Again, you can avoid this page.

SSIS Package Deployment using BIDS 6

Select Destination: This page is used to specify the destination

  • Server Name: Please specify the SQL Server instance. Named instance that you use while accessing the Database.
  • Path: You have to specify the Integration Service catalog path. If you haven’t created a catalog, then please refer to the Create Catalog article to understand the steps.
SSIS Package Deployment using BIDS 7

Here, we are selecting the named instance PRASAD.

SSIS Package Deployment using BIDS 8

You can see that the Path is enabled automatically after selecting the Server name.

SSIS Package Deployment using BIDS 9

We are selecting the Deploying Projects Part 1 folder under the SSISDB catalog as the project path. You can also use New Folder.. button to create a new folder under the catalog.

SSIS Package Deployment using BIDS 10

Click Next button

SSIS Package Deployment using BIDS 11

Please cross-check all the information, and if you find anything wrong, then use the Previous button to go back.

SSIS Package Deployment using BIDS 12

The Results page will show the result.

SSIS Package Deployment using BIDS 13

Let me open the Management Studio, and please navigate to Integration Services Catalog -> SSISDB -> Deploying Projects Part 1 -> projects under the Object explorer will show the newly deployed project.

SSIS Package Deployment using BIDS 14

You can Execute the package by right-clicking the Package and selecting Execute.. option from the context menu.

Execute the Package from SQL Server

It will display the following window. If you have any parameters, it will show them here, and you can also check the connection manager setting.

SSIS Package Deployment using BIDS 16

Click the OK button because I want o see the performance report.

Overview Report option to Yes

You can see the performance report.

SSIS Package Deployment using BIDS 18

Click on the View Message hyperlink to see the messages at each event. For example, PreExecute, Posts Execute, etc.

SSIS Package Deployment using BIDS 19

As we successfully executed the package from the server, let me open the destination table to see the result.

Deployment using BIDS Result

After the above step, use SSRS to generate a report.