My source table look like
ID Name Location Salary
1 ran NULL NULL
1 NULL DELHI NULL
1 NULL NULL 1000
I want my output to look like
ID Name Location Salary
1 ran Delhi 1000
What should be my approach to design a informatica mapping.
Assuming my source is flat file not a Relation table so i
cant use SQL.
Answer Posted / abhishek kumar
In aggregator
id group by;
o_name -> max(name);
o_location-> max(location);
o_salary-> max(salary);
connect id to id(target),o_name to name(target),o_location
to location(target),o_salary to salary(target) port;
src->sq->aggregator->target
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What is pmcmd command?
Explain dynamic target flat file name generation in informatica
What is enterprise data warehousing?
What is workflow? What are the components of the workflow manager?
What are mapplets? How is it different from a Reusable Transformation?
In development project what is the process to follow for an etl developer from day1
What are the transformations that cannot be placed between the sort origin and the joiner transformation so that we do not lose the input sort order?
pmscmd startworkflow -sv
EXL informatica Questions
What are the static cache and dynamic cache in informatica?
What is data caches/ index caches?
Explain incremental aggregation in informatica
Suppose on 1st Nov 2010 you had created a mapping which includes huge aggregator calculations and it is under process for next two days. You will notice that even on 3rd day also its still calculating. So without changing a logic or changing a mapping How will you troubleshot or to run that mapping? Explain the steps
TELL ME ONE COMPLEX MAPPING IN UR PROJECT? chandumba2005@gmai.com
what are 3 tech challenges/ common issues you face?