This is part 33 of the series of article on SSIS. In this article we are going to see on how to use an Aggregate (SUM) data flow transformation control in SSIS packaging.
Introduction:
In this article we are going to see on how to use an Aggregate (SUM) data flow transformation control in SSIS packaging. With this function operation we can get a Summation of a number of rows necessary to get result in desired format. Let’s jump into to the example on how to use this control in real time.
To follow my series of articles on SSIS packages, please click here.
Steps:
Follow steps 1 to 3 on my first article to open the BIDS project and select the right project to work on integration services project. Once the project is created, we will see on how to use an aggregate control for summing the rows and give as a single column
Here we will see on the SUM operation in the aggregate control. I have added an OLEDB connection which fetches the data from the database upon which we are going to do summation of number of rows and then pass it to a file destination as shown in the below screen
Here last 2 controls shows a red mark inside the control indicating that the control is not configured. We step forward and configure the same. Now double click on the Aggregate function will open a pop-up windows as shown in the below screen
Here we are selecting the columns on which we need a SUM as shown in the screen. And after selecting the numbers of columns for summation then click on the OK button to get configured. Now configure the Flat File Destination as shown in the below screen.
Once everything is configured your screen will look as shown in the below screen
Now Hit F5 will run the application and show the output as shown in the below screen
Here the numbers of rows are indicated at the bottom of the each control as shown in the above screen. And finally the results (SUM of rows resulting in a single column) are loaded to flat file destination which looks like below
Conclusion:
So in this article we have seen on how to do a Summation of a rows using an Aggregate function transformation in data flow tab.