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
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 |
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 |
What are the types of lookup caches?
10 Answers Accenture, IBM, Informatica,
In informatics server which files are created during the session rums?
How can we use mapping variables in informatica? Where do we use them?
what is degenerated dimension
without update strategy how to insert &update?
Explain constraint based loading in informatica
What is the scenario which compels informatica server to reject files?
How to delete the data in the target table after loaded.
Explain Dataware house architecture .how data flow from intial to end?
What is the difference between sequential batch and concurrent batch and which is recommended and why?
What are the associated ports in look up T/R.
what is rank and dense rank in informatica with any examples and give sql query for this both ranks