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 maping in Getting Started Wizard?

1 Answers  


What is session task and command task?

0 Answers  


how many types of dimensions are available in informatica?

0 Answers  


Plz..let me know differences between Informatica 7.1 and 8.1?

3 Answers  


Can any one give me a real time example for FACT TABLE & DIMENSIONAL TABLE?

0 Answers  


what is the difference between stop and abort

2 Answers  


Explain informatica architecture - version 8 / 9

0 Answers   Informatica,


what are the unix commands to start the wrk flow ?

4 Answers   Accenture, TCS,


in my source i have 100 records, and 3 targets, i want to load 1st record into 1st target,2nd record into 2nd target,3rd record into 3rd target again 4th target into 1st target and vice versa,how to achieve this?

3 Answers   Thomson Reuters,


What is souce qualifier transformation it is active or passive

2 Answers   HCL,


What are the circumstances that infromatica server results an unreciverable session?

1 Answers  


How to send duplicates to one target and unique rows to one target?target is empty

9 Answers   Amazon, IBM, Wipro,


Categories