Archive for October, 2009
Creating a SSIS package in VS 2008
This post explains in detail about creating a SSIS package in VS 2008, project folder structure and designer. You can read this post to get understanding on SSIS.
BIDS(Business Intelligence Development Studio) can be found after installing the full version of SQL server 2005 or 2008. I am using the 2008 version for this post. The SSIS development environment is detached from SQL server and you can develop the package offline then can be deployed to the server.
BIDS can be found in the SQL server 2008 group as shown below
1. To start a new SSIS project, first you need to open BIDS and select File —-> New —–> Project
2. In the solution explorer you will notice an empty package called package.dtsx was created.
3. Drag the Execute Process Task to designer from tool box. Double click the task to configure it. Name the task Notepad and browse the file location for executing the task.
4. Drag another Executable Task to designer and double-click on it to open the editor. Name the task calc and browse the exe file for executing the task.
These tasks are now connected, and the calc task will not execute until the first task succeeds.
5. Save the project and run it you were able to see the notepad. After closing the notepad you will get the calc. After execution of this package the tasks should show as green in color, which means successfully executed.
If you look into the directory that contains your solution , you were able to see
- .dtsx – A SSIS package
- .ds – A shared data source file
- .dsv – A data source view
- dtproj – A SSIS project file
The toolbox will look like the same
Related Posts:
2 commentsSQL Server Integration Services Features
SSIS is one of the powerful features in SQL Server 2005. Technically it is business intelligence feature and you can load data and do some tasks on it. Traditional DTS has been renamed to SSIS as a foundation to Business Intelligence.
This post briefly explains about the tools in SSIS
Import and Export Wizard
You can use SSIS Import and Export Wizard to move data from any OLEDB data source to a destination. You encapsulate all data in a single transaction.
BIDS Business Intelligence Development Studio
It is the central tool used by the SQL server SSIS developers to design packages.
You can use SSIS as am ETL tool. A core component of SSIS is Package. Package is a collection of tasks that execute in orderly fashion. A package can be saved onto a SQL server in msdb database. It can also saved as a .DTSX file which is an XML-structured file.
Related Posts:
2 comments
![Recommend [kalyanms1]](http://s3.amazonaws.com/arkayne-media/img/badge/logo-recommend-badge-medium.png)