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


Please Help Members By Posting Answers For Below Questions

Can anyone tell me the new features in Informatica 9 Version?

1757


What are the components of workflow manager?

788


What are the databases that informatica can connect to windows?

788


Could you explain what is enterprise data warehouse?

747


What are the popular informatica products?

794


Differentiate between a database and data warehouse?

882


How do you remove duplicate records in informatica? And how many ways are there to do it?

896


Global and Local shortcuts. Advantages.

1668


What is DR strategy for Informatica project?

900


can you please explain me pre session and post session options?

6896


What are the types of caches in lookup?

770


Explain the difference between mapping parameter and mapping variable?

793


Differentiate between joiner and lookup transformation?

837


How to convert a row into column and a column into rows? Name all DTM threads. What all threads stop when we issue STOP or ABORT? How to pass the value of a data(variable kind of) from one session ( generated in mapping) to another session in the same workflow... What are the tyoes of partitioning you know and how to apply them in real time ... Can partitioning be applied to expression transformation and how

1345


Why do we need informatica?

724