Click here to Skip to main content
15,881,757 members
Articles / Database Development / SQL Server
Article

Developing a SSIS Package

Rate me:
Please Sign up or sign in to vote.
2.11/5 (7 votes)
2 Nov 20061 min read 77.1K   23   10
An article on configuring an SSIS Package.

Sample Image

Introduction

This articles describes how to configure and create expressions in SQL Server 2005 Integration Services (SSIS).

Using the code

If you want to use the package which is developed in some other machine, it fails to open because of the package encryption. Normally, a package is stored in XML format and gets encrypted depending on the setting you have configured. By default, the protection level property for that package is "EncryptSensitiveWithUserKey". In this whenever the package is saved, it encrypts all sensitive information (like passwords) using machine credentials and saves it. I prefer this property value to be DontSaveSensitive, which does not save any sensitive information.

But there is a catch here. If it is not saving any information, how do we get the required information while the user tries to run the package. For that you have to create variables and create the expressions whenever needed.

Suppose you want to export data from the source (text file) to the destination (SQL Server). You need to maintain both the source path as well as the destination connection in variables. Create variables like this:

SourceConnection..."c:\source\"
DestiUserID= "sa"
DestiPassword="sa"
DestiDataBase ="TempData"
DestDataSource= "10.12.12.123"
Assign the scope of these variables as package level.

While creating the connection manager for the source and the destination instead of using a scalar connection string, use dynamic connection strings which can evaluate the expression on the fly. Set the expression for the connection string for OLEDB as:

C#
Data Source= "+ @[User::DestDataSource] +";User ID= "+ 
             @[User::DestiUserID]   +";Password= "+ 
             @[User::DestiPassword] + 
             ";Initial Catalog= "+ @[User::DestiDataBase]  + 
             ";Provider=SQLNCLI.1;Auto Translate=False;"
Set the expression for the connection string for the source as:
@[User::SourceConnection]+"source.txt"

The expression follows the C# syntax.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Technical Lead Thomson Reuters
India India
completed B.Tech in computer science, working as Technical Leader.

Comments and Discussions

 
GeneralProgramming SSIS Pin
blackpower2k71-May-09 9:00
blackpower2k71-May-09 9:00 
GeneralMy vote of 1 Pin
Philip.F10-Feb-09 3:16
Philip.F10-Feb-09 3:16 
QuestionLooking for the Download ? Pin
Paul Chu29-Aug-08 18:28
Paul Chu29-Aug-08 18:28 
Questionssis deployment Pin
Ravindra Rayudu29-Jul-08 1:17
Ravindra Rayudu29-Jul-08 1:17 
Question How to get execution progress ? Pin
Gil Seagal5-Sep-07 6:55
Gil Seagal5-Sep-07 6:55 
Generalyou left out a bunch [modified] Pin
Tom McDonald20-Apr-07 10:19
Tom McDonald20-Apr-07 10:19 
GeneralRe: you left out a bunch Pin
karun12322-Apr-07 19:29
karun12322-Apr-07 19:29 
Generalmissing microsoft.sqlserver.dts.runtime component Pin
Wenjie Wang21-Mar-07 13:32
Wenjie Wang21-Mar-07 13:32 
GeneralRe: missing microsoft.sqlserver.dts.runtime component Pin
karun12321-Mar-07 19:05
karun12321-Mar-07 19:05 
GeneralRe: missing microsoft.sqlserver.dts.runtime component Pin
Wenjie Wang22-Mar-07 16:21
Wenjie Wang22-Mar-07 16:21 
Thanks for the reply, I eventually sorted it out;)

It is packaged with
C:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Microsoft.SQLServer.ManagedDTS.dll

I'm able to use Microsoft.SQLServer.dts.runtime after adding this file to "reference".

+-Wenjie Wang aka William---------------------------------------
| WANG Infonology Systems Pty Ltd - Your Partner for the Future
| Phone : (02) 9871 2018 | support@wiseagent.com.au
| Mobile: 0412 688 380 |http://www.wiseagent.com.au/
+-------------------------+-------------------------------------

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.