How to list Top 10 salary, without using Rank Transmission?
Answer Posted / amedela chandra sekhar
write sql query in the source qualifier t/r
sql override
select * from(select dense_rank () over (order by sal desc
nulls last)as rnk,emp.* from emp)where rnk<=10;
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Is there any target staging area in informatica not staging area
explain any diffcult scenario that u have faced in your experience... or explain any complex maping u have developed?
Describe expression transformation?
I have 100 records in source table, but I want to load 1, 5,10,15,20…..100 into target table. How can I do this? Explain in detailed mapping flow.
What is the difference between a repository server and a powerhouse?
Write the unconnected lookup syntax and how to return more than one column.
What is mapplet in informatica?
How you know when to use a static cache and dynamic cache in lookup transformation?
Calculate sum of salaries department wise. Then the sum will be repeat for all columns in each department. Develop a mapping for this.
Whats the difference between informatica powercenter server, repositoryserver and repository?
If the source has duplicate records as id and name columns, values: 1 a, 1 b, 1 c, 2 a, 2 b, the target should be loaded as 1 a+b+c or 1 a||b||c, what transformations should be used for this?
What is the benefit of partitioning a session?
Explain sessions and how many types of sessions are there?
What is flashback table ? Advance thanks
What are the basic requirements to join two sources in a source qualifier transformation using default join?