My source is EmpID, Salary- (101, 1000)(102, 2000)(103, 3000).
In the Target I want the following EmpID, Salary,
Composite_Salary- (101, 1000, 1000)(102, 2000, 3000)(103,
3000, 6000). Please guide on how to build the mapping.
Answer Posted / nirosha g
Use Expression Transformation for this.
Create variable port after the two input ports:
v_cumm_sal = v_cumm_sal+sal;
o_cumm_sal = v_cumm_sal;
Connect The ports id,sal and o_cumm_sal to target
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Where can we find the throughput option in informatica?
Explain the tuning lookup transformation - informatica
Clarify the aggregator change?
What happen when you enable grid option avilable at session level ? (Ans found: Scalabily . A single session Parallelization) But how can one session is sharable among different nodes at the same time while running ?
How to create the list file having millions of flat files while indirect loading in informatica? In indirect file loading, suppose we have less no.of flat files then we can enter files names manually in list file creation. If millions of files are there, how can we enter the flat file names in list file?
What are the guidelines to be followed while using union transformation?
What is a pre-defined event and user-defined event?
whats the logic to load the lower level of granularity of data to fact table.
what is the size ur source like(file system or database)? how many record daily come u r banking project?
How can we send the flat file data to different targets(which are also flat files) based on the name of flat file with out adding extra columns?
How to load the name of the current processing flat file along with the data into the target using informatica mapping?
Explain lookup transformation is active in informatica
What is a repository manager?
Explain the different dimensions.
write sql query vertical to horiozontal following table id name 1 100 2 dinesh 3 india 1 101 2 suresh 3 india 1 103 2 prakesh 3 usa i want output like id name country 100 dinesh india 101 suresh india 103 prakesh usa