Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Please let me know how to make encryption and decryption with example?

0 Answers  


i have flatfile source. i want to load the maximum salary of each deptno into target. what isthe mapping flow

3 Answers   Wipro,


WHAT IS THE DIFFERENCE B/W 7.X AND 8.X ? TELL ME FEW DIFFERENCES.

2 Answers  


In indirect file loading, suppose we have less no.of flat files then we can enter files names manually in list file creation. If millions of files are there, how can we enter the flat file names in list file?

1 Answers   HP,


What will happen if we have a filter transformation used in a mapping and in the filter condition we specify 1. Yes nothing else, only the number 1. In other words, assuming we have 10 rows coming to this filter transformation as an input, how many rows will be output by this transformation when we have only 1 in the filter condition?

5 Answers   TCS,


How we will implement Pushdown Optimization and Types in Informatica with better examples

4 Answers   TCS,


Write the program through which the records can be updated?

0 Answers  


WHAT IS FACT TABLES?

2 Answers  


What are the out put files that the informatica server creates during the session running?

2 Answers  


server hot-ws270 is connect to Repository B. What does it mean?

0 Answers   Cognizant,


Can yoU use the maping parameters or variables created in one maping into another maping?

2 Answers  


LOOKUP Condition is nothing but a Join condition? What type of join condition it,by default ? Using the LookUP Condition How many types of relational conditions we can make ?

6 Answers  


Categories