Click here to Skip to main content
15,868,292 members
Articles / WCF

Load Integration Services Assembly File Into Visual Studio 2010 Project

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
19 Feb 2013CPOL2 min read 8.3K   2  
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.

This article was originally posted at http://www.selectsifiso.net

License

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


Written By
Technical Lead select SIFISO
South Africa South Africa
Sifiso W. Ndlovu is a certified Microsoft professional who holds a Master’s degree in IT Management from the University of Johannesburg. He specializes on a range of enterprise and consumer technologies using open source and proprietary software. He is the member of the Johannesburg SQL User Group wherein he has made several presentations on User Group Meetings and SQL Saturday sessions. He has written for a number of publications including SQLShack.com and SQLServerCentral.com.

Comments and Discussions

 
-- There are no messages in this forum --