Skip to main content

SSIS_Variables

 The purpose of a variale is to move the data  from one task to another or one package to another.(Dynamic connections)

Looping through the files .

 There are 2 types of Variables in SSIS.

1. System Variables / Predefined 

2. User defined Variables.

Coming to System Variables 

-Pre-defined

-Read only 

-Stores Package Executed info.

-Present in NameSpace : System

-Scope: Local (task) or Global (Package)

Coming to User Variables

-User Defined

-Read and Write

-Presented in Name Space : User

-Scope : Local (task) or Global (Package).


You can change the scope of the Varaible from the highlighted area in the bottom of the Tab(as highlighted)




For Example , Displaying the Opt in the form of a Variable in Execute SQL Task.

Select Name from Emp where Empid = 1

4 Steps 


Passing the variable to the Script task. 




Paste the code in the Script Task and Build.


To Print Multiple Data we can use like below example


2.Creating a Folder with Timestamp




Now When you go to the Folder , a new Folder is Created with File Name as below .

The Advantage of using a variable is you can easily change the file path and then the Variable Value is update and now you get the folder created in another File Path.










Popular posts from this blog

DBMS

Database : database can be defined as a collection of information stored at a particular place written in a predetermined manner, belongs to a particular topic.  DBMS: (DATA BASE MANAGEMENT SYSTEM):  it is defined as software which is present inside the database which is used o maintain or manage the data within the database .                                 In the above diagram, if the user needs any info from the database. He has to contact with  dbms , then the dbms goes to the database, takes the information from the  database and gives it back to the user. Database models :  these models are broadly divided into the following types: 1.         FMS/FDMS 2.         HMS/HDMS 3.         NDBMS 4.         RDBMS 5.      ...

Introduction to Datawarehouse

In shot what is DWH (Data warehouse)? A DWH is a Large Database which consists of Dimension and Fact tables. Or Collection of DataMart is called as a DWH. Father of Data Warehouse: Dr. William H. Inmon Dr. Ralph Kimball -Introduced Dimension Modelling to design DWH in 1990. What is Data Warehouse? As per Dr. William Inmon, Data Warehouse is a -       Subject Oriented (Loans, Mutual Funds etc.) -       Integrated (Get data from various sources) -       Time Variant (Different time period data)   ·          *Datamart is Subject Oriented ·          *DWH is a collection of Datamart ·          *DWH is a superset of Datamart ·          *Datamart is also another database. Top-down Approach: (DWH->Datamarts)   ...

Different Schemas in DWH

  SCHEMAS:   Star Schema: -       Star Schema means Dimension Tables are directly linked to the Fact Table. Snow Flake Schema: -       Dimension Tables are indirectly linked to the Fact Table OR -       Dimension table is linking to another dimension table .       Star Schema   Snow Flake Schema 1 Has redundant data and hence tough to maintain/change 1 No redundancy and hence more easy to maintain/change 2 Less complex queries and hence easy to understand 2 More complex queries and hence less easy to understand 3 Less foreign keys so faster execution time of cube. 3 More foreign keys so take more execution of cube 4 Has De-Normalized Tables 4 Has Normalized Tabl...