If a table contains 100 records we have to fetch 50-100
records from source to target?how

Answers were Sorted based on User's Feedback



If a table contains 100 records we have to fetch 50-100 records from source to target?how..

Answer / nitin

Use a sequence generator Transformation to filter the
records from 50 to 100 and then load to Target.

Is This Answer Correct ?    6 Yes 0 No

If a table contains 100 records we have to fetch 50-100 records from source to target?how..

Answer / tauseef

hai Tauseef,

as per my knowledge we can Fetch 50-100 records
by using rownum>=50 in source qualifier it self after generation sql query

Is This Answer Correct ?    3 Yes 1 No

If a table contains 100 records we have to fetch 50-100 records from source to target?how..

Answer / udit

If the question is like they want to load next half record then we write query in source qualifier 

select * from table 
minus
Select * from table
where rownum<=(select count(*)/2 from table)

this query will load the next half i.e. from 50 to 100 records

Is This Answer Correct ?    1 Yes 0 No

If a table contains 100 records we have to fetch 50-100 records from source to target?how..

Answer / vikash sharma

SELECT * FROM Tab_name
WHERE Record BETWEEN 50 AND 100;

Is This Answer Correct ?    0 Yes 0 No

If a table contains 100 records we have to fetch 50-100 records from source to target?how..

Answer / rajesh

in rownum not support grater than so use in filter
transformation iif(rownum<50,false,true)

Is This Answer Correct ?    1 Yes 2 No

If a table contains 100 records we have to fetch 50-100 records from source to target?how..

Answer / rajesh

use condition rownum>=50 in filter transformation

Is This Answer Correct ?    2 Yes 5 No

If a table contains 100 records we have to fetch 50-100 records from source to target?how..

Answer / imran

use a Sequence Generator T/R........

GO to SG T/r-->Properties (Set the values as shown below)--->

1) 'Enable' the Cycle Option
2) give 'Start value' as 50
3)End Vale 100
4) Increment BY 1
5) Connect Nextval & Currval o/p ports to Target

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More Informatica Interview Questions

what is session parameters?

1 Answers   Cap Gemini,


What are the types of caches in lookup?

0 Answers  


Suppose we configure sorter transformations in the master and detail pipelines with the following sorted ports in order: item_no, item_name, price. When we configure the join condition, what are the guidelines we need to follow to maintain the sort order?

0 Answers  


I want skip first 5 rows to load in to target? what will be the logic at session level ??

1 Answers   IBM,


How do you load only null records into target?

0 Answers  






Hi I have two sources like A, B. My source A contain 10000 million records from that i need 20 attributes. My source B has also same 10000 million records from that i need only 1 attribute. By using Joiner i have to load into target? Is there any issue regarding this? if issue is there how to tune this mapping in best way?

2 Answers   Zensar,


Hi All, I have three question. 1) How to remove the header and footer in a flat file in informatica? 2)How to load the first and last record of flat file into the target? 3)I have a Input and Output table. Input Name Salaray Month A 100 Jan A 200 Feb A 300 March B 400 April B 500 May B 600 June Output Name Salaray Month A 100 Jan A 300 Feb A 600 March B 400 April B 900 May B 1500 June How to implement and get the ouput as mentioned above. If Possible kindly provide the SQL query also. Kindly any one help to implement this concept. Thanks, Pradeep

3 Answers   CSC, iNautix,


Why use the lookup transformation ?

2 Answers   Informatica,


star and snowflake schema?

6 Answers  


How the dimensions will be loaded?

0 Answers   HCL,


What are the performance considerations when working with aggregator transformation?

0 Answers  


What is the advantage of informatica?

0 Answers  


Categories