i have flatfile source. i want to load the maximum salary of
each deptno into target. what isthe mapping flow

Answers were Sorted based on User's Feedback



i have flatfile source. i want to load the maximum salary of each deptno into target. what isthe ma..

Answer / pradeepa

We can use an aggregator to group by on deptno and create a
newport to find the max(salary) and load dept no and
salary,we'll get unique deot no and the max salary.

Is This Answer Correct ?    15 Yes 0 No

i have flatfile source. i want to load the maximum salary of each deptno into target. what isthe ma..

Answer / syed

we can also use rank transformation by setting top, no of
rank =1 and enable group by port deptno

Is This Answer Correct ?    9 Yes 2 No

i have flatfile source. i want to load the maximum salary of each deptno into target. what isthe ma..

Answer / janardhanreddy yerraballi

select deptid, empname, salary from
(Select deptid, empname,salary,
rank() Over(Partition by deptid order by salary desc)as rank from
EmpDetails) emp
where emp.rank = 1

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Informatica Interview Questions

What is a surrogate key?

0 Answers  


Define mapping and session?

0 Answers   Informatica,


What is a node in Informatica?

0 Answers  


What is the difference between source qualifier transformations source filter to filter transformation?

0 Answers  


What is the filename which you need to configure in UNIX while installing infromatica?

2 Answers   Accenture,






how to connect two or more table with single source qualifier?

4 Answers   IBM,


Is there any way to read the ms excel datas directly into informatica?

0 Answers  


How to call stored Procedure from Workflow monitor in Informatica 7.1 version?

1 Answers   Accenture,


where is the reject loader .

1 Answers  


in u flatfile some of fact records are missed then u load the diminision records are not if u load diminsion records what about fact table records

0 Answers  


If we have lookup table in workflow how do you trouble shhot to increase performance?

2 Answers  


Where do you create/define mapping parameter and mapping variable?

1 Answers  


Categories