SSIS Designer:
** Packages are developed using 2 ways the one is through SSIS wizard and second is through Designer.
* In SSIS wizard process we create packages in Import and export data tool, Here we create packages using SQL server data tools.
* Using Wizard we can develop only simple packages but by using Sql server data tools complex packages can be developed in accordance to required business logic.
* Start--> SQL server data tools or open run --> devenv
* Select new project and project type as integration services for SSIS application development.
* New project contains different windows--
1)Solution explorer: Many projects can be made under one solution and using this we can easily navigate through projects and under the projects contains packages
2)Tool Box: It contains items placed in the SSIS package.
** Items can be Control flow(tasks and containers) , Data flow(source, transformation, dest)
3) Properties window: allows to set the properties to the package and its items.
4) Connection mangers: Contains the connection managers used in that package.
** can be package level(used only inside package) or project level(multiple packages)
i.e during development apps in wizard every time we established a connection to destination but here once developed can used any no of times
Working with package designing:
We use 2 tabs for this
1)Control flow: Normally logic is implemented using tasks and multiple tasks are placed in one container. This control flow defines flow execution between tasks( sequential or parallel)
2) Data flow: defines flow data from source to destination
Note: to define data flow we need to use " Data flow task" in control flow tab,
** Packages are developed using 2 ways the one is through SSIS wizard and second is through Designer.
* In SSIS wizard process we create packages in Import and export data tool, Here we create packages using SQL server data tools.
* Using Wizard we can develop only simple packages but by using Sql server data tools complex packages can be developed in accordance to required business logic.
* Start--> SQL server data tools or open run --> devenv
* Select new project and project type as integration services for SSIS application development.
* New project contains different windows--
1)Solution explorer: Many projects can be made under one solution and using this we can easily navigate through projects and under the projects contains packages
2)Tool Box: It contains items placed in the SSIS package.
** Items can be Control flow(tasks and containers) , Data flow(source, transformation, dest)
3) Properties window: allows to set the properties to the package and its items.
4) Connection mangers: Contains the connection managers used in that package.
** can be package level(used only inside package) or project level(multiple packages)
i.e during development apps in wizard every time we established a connection to destination but here once developed can used any no of times
Working with package designing:
We use 2 tabs for this
1)Control flow: Normally logic is implemented using tasks and multiple tasks are placed in one container. This control flow defines flow execution between tasks( sequential or parallel)
2) Data flow: defines flow data from source to destination
Note: to define data flow we need to use " Data flow task" in control flow tab,
Comments
Post a Comment