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
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 |
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 |
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 |
What is a surrogate key?
Define mapping and session?
What is a node in Informatica?
What is the difference between source qualifier transformations source filter to filter transformation?
What is the filename which you need to configure in UNIX while installing infromatica?
how to connect two or more table with single source qualifier?
Is there any way to read the ms excel datas directly into informatica?
How to call stored Procedure from Workflow monitor in Informatica 7.1 version?
where is the reject loader .
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
If we have lookup table in workflow how do you trouble shhot to increase performance?
Where do you create/define mapping parameter and mapping variable?