In the series of Zero to Hero in SSIS this is our next post. In this post we will see Conditional Split transformation.
I am pretty much sure that by the name you got some impression what it would be.
So, a Conditional Split Transformation is a way by which you can conditionally split an input into multiple output.
Suppose, You are a food supplier and you cook both veg & non veg food. Now according to orders by client you need to move those order requests to particular kitchen to prepare those orders.
Let’s understand it by following step by step execution example.
In this example , I am using AdventureWorks database as a source database connection. We are fetching products along with categories. We need Bikes products in different file and rest other product in different file. You can see products with categories shown below in this image Accessories , bikes are the categories.
Step 1:- Create a new package and drag drop data flow task control and double click it. You will get a new screen which data flow task. Now drag drop Source Assistance. from SSIS controls tool bar.
Now as usual we have to configure the database connection string and set the database to adventureworks.
Step 2:- Once the database is configured right click on control and choose edit property. You will get below screen where you need to specify the query which we shown earlier in figure.
Once you done with above steps you need to configure columns as well so, click on Columns and configure it.
Step 3:- Now drag drop conditional split and connect input arrow to it as shown in figure
Step 4:- Now choose edit option by right clicking the conditional split and configure it. When you click you will get screen like below. You will find different condition operator. One important point to remember here you need to drag drop column name to condition textbox. As our aim is to have product with Bikes category in a different file and other categories in different file.So we use following condition as shown in below figure.
Step 5:-Now drag drop a flat file destination and assign the output of the above conditional split to File destination. You will get following screen. As you see we are assigning Bike condition output to this file which means all the products which belongs to bikes categories should be available in this.
Step 6: Now Configure the flat file destination by choosing the edit option.
Step 7:- In similar way we have to capture the output which not belongs to Bikes category as shown in below figure
Step 8: In nutshell we will get following screen
We almost done here. Now to check whether this conditional split is working or not. To check this hit F5 or run the package. So, if you see below everything working fine. We got 32 rows in bike category and 73 rows in other categories.
To cross check result we will see the file output as well
So , If you go through all the above steps we have achieved Conditional split example.
I hope this post might help you to understand conditional split.
In next step we will go for next step in SSIS.
Enjoy !!!
RJ!!!
No comments:
Post a Comment