wat transf shud i use to achieve this
id sal id sal sum
src-1 20 tgt 1 20 40
1 20 1 20 40
2 15 2 15 35
2 20 2 20 35
Answers were Sorted based on User's Feedback
Answer / uma
Source -> SQ -> Agg T/F to get sum (group by id) -> Joiner (to join SQ and output of aggr transformation) -> Target
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / rk
Use analytical function if source is database..
SELECT ID, SAL, SUM(SAL) OVER (PARTITION BY ID) AS SUM from table.
| Is This Answer Correct ? | 0 Yes | 0 No |
I have the source like col1 col2 a l b p a m a n b q x y How to get the target data like below col1 col2 a l,m,n b p,q x y
How to convert IBM Cognos generated XML to a readable XML format for ETL tools
What are the differences between a connected lookup and unconnected lookup?
Can you start a session inside a batch individually?
how to run 2 workflows sequentially. plz respond what is the process?
What is the sql query overwrite in source qualifier in informatica
What are the ETL tools available in DWH?
I have 1200 records how can u send it in aggregator with good performance issues?
What are active transformations? Name them.
What are the types of lookup transformation?
explain the scenario for bulk loading and the normal loading option in Informatica Work flow manager ???
If source is having 5000 rows,and if you want to load data into 500 rows to target,if the session runs successfully,how can you verify the target if the rows are successfully loaded or not.