i have n number of records in my source, i want first and
last record to my target. how can u implement this scenario .
Answer Posted / chandrasekar
Please try the SQL query in the SQL override,
select * from emp where rownum=1 union select *
from emp where rowid=(select max(rowid) from
emp);
if it wrong means please mail to me chandranmca2007@gmail.com
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
Is it possible to use a client with different version than that of its Informatica server?
What is a predefined event?
design of staging area?
have u done any performance tuning? how u ll do?
can you please explain me pre session and post session options?
Explain load alternative records / rows into multiple targets - informatica
What is a joiner transformation?
How to create a non-reusable instance of reusable transformations?
How to create Target definition for flat files?
What is workflow monitor?
How would you join a node to the already existing domain?
i had a source containing business,sales,details column and i have to load it to a target but i have some bad records in it , but i have to load 70% of business records and 50% of sales and 95% of details records excluding bad records to achieve this what should be done and what all logic and tx should be used can anyone help? thanks in advance
How do you convert single row from source into three rows into target?
How to generate sequence numbers without using the sequence generator transformation?
In what scenario we use to improve session performance by pushdown optimization?can any one give example?