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.

Answers were Sorted based on User's Feedback



My source table look like ID Name Location Salary 1 ran NULL NULL 1 NULL DELH..

Answer / 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

My source table look like ID Name Location Salary 1 ran NULL NULL 1 NULL DELH..

Answer / rajan raorane

Use the below Mapping


Flat file-->SRC Qualif-->EXp-->Filter( With not null
condition on each port)-->Normalizer-->output

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Informatica Interview Questions

What are the types of lookup caches?

10 Answers   Accenture, IBM, Informatica,


In informatics server which files are created during the session rums?

0 Answers  


How can we use mapping variables in informatica? Where do we use them?

0 Answers  


what is degenerated dimension

6 Answers   Cap Gemini,


without update strategy how to insert &update?

1 Answers   DELL,






Explain constraint based loading in informatica

0 Answers   Informatica,


What is the scenario which compels informatica server to reject files?

0 Answers  


How to delete the data in the target table after loaded.

3 Answers   TCS,


Explain Dataware house architecture .how data flow from intial to end?

0 Answers   Keane India Ltd,


What is the difference between sequential batch and concurrent batch and which is recommended and why?

1 Answers  


What are the associated ports in look up T/R.

5 Answers   IBM, Zensar,


what is rank and dense rank in informatica with any examples and give sql query for this both ranks

4 Answers  


Categories