- Learning Informatica PowerCenter 10.x(Second Edition)
- Rahul Malewar
- 319字
- 2021-07-02 20:55:50
Aggregator transformation
Aggregator transformation is used for calculations using aggregate functions on a column as against in expression transformation, which is used for row-wise manipulation.
You can use aggregate functions such as SUM, AVG, MAX, MIN in aggregator transformation.
Scenario for aggregator transformation: Use the EMPLOYEE oracle table as the source, and get the sum of salaries of all the employees in the target.
Perform the following steps to achieve the functionality:
- Import the source using the Employee Oracle table in the Source Analyzer, and create Target TGT_TOTAL_SALARY in Target Designer.
- Create mapping m_AGG_TOTAL_SALARY, and drag the source and target from the Navigator to Workspace. Create the aggregator transformation with the name AGG_TOTAL_SAL.
- As we need to calculate TOTAL_SALARY, drag only the SALARY column from the Source Qualifier to aggregator transformation, as shown here:
- Add a new column TOTAL_SALARY in the aggregator transformation to calculate the total salary as shown in the following screenshot:

- Add the function in the TOTAL_SALARY port by opening the expression editor as described in the preceding section. The function we need to add to get the total salary is SUM(JAN_SAL):
- Connect the TOTAL_SALARY port to the target as shown in the following screenshot:
With this, we are done using the aggregator transformation. When you use aggregator transformation, integration services store the data temporarily in cache memory. Cache memory is created because the data flows in a row-wise manner in Informatica, and the calculations required in aggregator transformation are column wise. Unless we store the data temporarily in cache, we cannot calculate the result. In the preceding scenario, the cache starts storing the data as soon as the first record flows into the aggregator transformation. Cache will be discussed in detail later in the chapter under the Lookup transformation section.
In the next section, we will talk about added features of aggregator transformation. Aggregator transformation comes with features such as group by and sorted input.
- Dynamics 365 for Finance and Operations Development Cookbook(Fourth Edition)
- Learning Docker
- 架構不再難(全5冊)
- vSphere High Performance Cookbook
- jQuery從入門到精通 (軟件開發視頻大講堂)
- PHP網絡編程學習筆記
- 從零開始學C#
- HTML5秘籍(第2版)
- JavaScript腳本特效編程給力起飛
- ASP.NET求職寶典
- 從零開始學Selenium自動化測試:基于Python:視頻教學版
- UML基礎與Rose建模實用教程(第三版)
- 前端架構設計
- Mastering Machine Learning with scikit-learn
- 微信公眾平臺服務號開發:揭秘九大高級接口