which transformation should we use to get the 5th rank
member from a table in informatica?can we achieve this in
sql?
Answer Posted / venkateshmalneni
FOR THIS WE HAVE 2 USE TWO T/R ie FIRST WE HAVE 2 USE RANK T/R
AND THEN USE A FILTER T/R IN FILTER GIVE THE CONDITION AS
RANK=5 CONNECT TO TARGET
THE FLOW IS LIKE THIS
SRC --->SQ--->RANK--->FILTER--->TRG
WE CAN ALSO DO THIS IN SQL USE THE FOLLOWING QUERY
SELECT * FROM <TABLE_NAME> WHERE ROWNUM <= 5 MINUS SELECT *
FROM <TABLE_NAME> WHERE ROWNUM <=4;
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Why is sorter an active transformation?
What is the need of an ETL tool?
What is a surrogate key?
What you know about transaction control transformation?
Which means the first record should come as last record and last record should come as first record and load into the target file?
can any one give some examples for pre sql and post sql(Except dropping and creating index).
What is aggregate cache in aggregator transformation?
have u done any performance tuning? how u ll do?
What is workflow? What are the components of the workflow manager?
what are the best practices to extract data from flat file source which are bigger than 100 mb memory?
Reusable transformation and shortcut differences
Hi, I saw one mapping implemented by my seniors . In Expression transformation they implemented following logic. That is iif(is_date(in_UC_DATINV,'YYYYMMDD'),to_date(in_UC_DATINV,'Y YYYMMDD'),'Inventory Date is either invalid or null') Inventory_Date is validated only for is_date() But not validated for notisnull() . But error says “ either invalid or null “ why? Whether is_date() also check for not isnull() ? or in this logic something is different ? Please answer me . Advance thanks
tell me the rules and responsblites in our project(my project is development)
What are the differences between oltp and olap?
Explain in detail about scd type 1 through mapping.