i have one source 52 million records i want target only 7
records ?how wil you do what logic to implement?
Answers were Sorted based on User's Feedback
Answer / vijay
Are you saying you want the first 7 records from the source
table?
If that is the case, write an override in source qualifier
and fetch by the row number. That would be the fastest
way.Load into target.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / prakash kumar kumhar
can u tell me which 7 records u want?
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / amedela chandra sekhar
IF U WANT LOAD 7 RECORDS FROM SOURCE TO TARGET,
WE CAN USE SEQUENCE GENERATOR T/R
CURRENT VALUE =0
END VALUE =7
RESET ENABLE
THEN DRAG THE NEXTVAL PORT TO EXP T/R
CREATE ONE OUTPUT PORT GIVE THE CONDTION LIKE NEXTVAL =7.
PLZ LET ME IF ANY WRONG
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / jacob
take one sequence generator and poppulate the sequence nos
to all rows then give condition as sequence no<=7.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sameer
If our source as a relational table then we write sql queries in sour economy qualifier transformation select * from table-name where rownum <=7
But if our soure as flat file
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sameer
If ur source as a flat filemail then we uses first expression transformation and we write expression v1=v1+1 and one output port o1=v1 then after filter transformation and in there filter conditions just write o1 <=7 But if ur source as a relational source then we write select * from table-name
Where rownum <=7
| Is This Answer Correct ? | 1 Yes | 0 No |
How many repositories can we create in Informatica?
Explain what is informatica metadata and where is it stored?
In any project how many mappings they will use(minimum)?
If I have a index defined on target table and if set it to bulk load will it work ?
What is tracing level and what are the types of tracing level?
I have the source like col1 col2 a l b p a m a n b q x y How to get the target data like below col1 col2 a l,m,n b p,q x y
Describe an informatica powercenter?
what are the types of facts with Examples?
Give one example for each of conditional aggregation, non-aggregate expression, and nested aggregation?
can any one explain me what i have to tell about insurance project in interview,,,,when he asked to tell about ur project
source : col1 101 101 101 102 102 102 103 103 103 col2 1000 1500 2000 1200 2300 3000 2400 1300 2000 i need target as col1 101 102 103 col2 1000,1500,2000 1200,2300,3000 2400 1300 2000
I want skip first 5 rows to load in to target? what will be the logic at session level ??