6
SQL Server Integration Services Project

03 Integration Services Project

Embed Size (px)

DESCRIPTION

 

Citation preview

Page 1: 03 Integration Services Project

SQL Server Integration Services Project

Page 2: 03 Integration Services Project

Agenda

What is SQL Server Integration Services Project

SSIS Project Structure

Page 3: 03 Integration Services Project

What is Integration Services ProjectIn Business Intelligence Development Studio, a project is a container in which you develop Integration Services packages.Integration Services project stores and groups the files that are related to the package. For example, a project includes the files that are required to create a specific extract, transfer, and load (ETL) solution, including the package, data source, and data source view definitions.

Page 4: 03 Integration Services Project

Understanding SSIS Project Structure

SSIS Project

SSIS Packages

Data Sources

Data Source Connection

Package.dtsx

Miscellaneous

Solution ‘SSIS Project’

Data Source Views

Data Source View

Page 5: 03 Integration Services Project

<DTS:Executable> <DTS:Property DTS:Name="CreatorName">WIN-NYNVH2C760H\Administrator</DTS:Property> <DTS:Property DTS:Name="CreationDate“>11/28/2009 3:31:10 PM</DTS:Property> <DTS:Property DTS:Name="ProtectionLevel">1</DTS:Property> <DTS:Property DTS:Name="VersionGUID">{00106F0F-46DF-4202-B26B-C}</DTS:Property> <DTS:LoggingOptions> <DTS:Property DTS:Name="LoggingMode">0</DTS:Property> <DTS:PackageVariable> <DTS:Property DTS:Name="PackageVariableValue" DTS:DataType="8"> </DTS:Property> </DTS:PackageVariable> </DTS:LoggingOptions></DTS:Executable>

Creating an SSIS Project in BIDSWhen you create packages in BIDS, the package is stored in the file system with the .dtsx file extension. This .dtsx file is an XML file that contains the logic and the layout for the design you have developed in BIDS, and you can move the file to a different project, manually deploy it to different servers, or make it part of a deployment package.

Page 6: 03 Integration Services Project

ResourcesIntegration Services Projects - http://msdn.microsoft.com/en-us/library/ms138028.aspx