Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / WCF

Load Integration Services Assembly File Into Visual Studio 2010 Project

0.00/5 (No votes)
19 Feb 2013CPOL2 min read 8.5K  
How to load Integration Services Assembly file into Visual Studio 2010 project

Abstract

SQL Server Integration Services 2012 comes with a new API for scripting packages which is called MOM – Managed Object Model. This API is accessed through the Microsoft.SqlServer.Management.IntegrationServices.dll assembly file. However, when you create an SSIS 2012 project/package using Visual Studio 2010, the assembly file is missing.

In this post, I will show you one of the ways of loading the assembly into project.

Requirements

Article

We begin by launching Microsoft Visual Studio and create a new Integration Services Project which is located under Business Intelligence Projects category.

After you have assigned a project name, proceed to click and drag the Script Task into Control Flow pane from toolbox.

I have called the package "sS_LoadAssembly.dtsx" and the Script Task "Scripting SSIS 2012″ as shown below:

Image 1

In Solution Explorer, right click the package "sS_LoadAssembly.dtsx" as shown below:

Image 2

Click "View Code".

An XML file called "sS_LoadAssembly.dtsx[XML]" is opened.

Take note of the elements under node "DTS:ObjectData" – there is currently a single element called "ScriptProject".

Image 3

Let’s go back to the file called "sS_LoadAssembly.dtsx[Design".

Right click the script task and click on "Edit"

Under the Script Task Editor, change the "ScriptLanguage" to "Microsoft Visual C# 2010".

Click Edit Script.

Close the script.

Save the changes.

Go back to the "sS_LoadAssembly.dtsx[XML]" XML file.

You will notice that additional elements have been added under node "DTS:ObjectData".

Image 4

We are interested in the node called "ItemGroup".

Let’s add a reference to the Microsoft.SqlServer.Management.IntegrationServices.dll assembly file as follows:

  • <Reference Include="Microsoft.SqlServer.Management.IntegrationServices, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91″ />

Image 5

Save all changes.

Go back to the file called "sS_LoadAssembly.dtsx[Design"

Right click the script task and click on "Edit".

Click Edit Script.

Collapse "Namespaces".

Image 6

Insert the following:

  • using Microsoft.SqlServer.Management.IntegrationServices;

Conclusion

Voilà! Now you can go ahead and access the new API for scripting SSIS 2012.

Cheers,
Sifiso.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)