how will you get 21 to 30 record from 50 records?
Answers were Sorted based on User's Feedback
Answer / srikanth
select * from table where rownum<=30
minus
select * from table where rownum<=21;
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / nilesh
Other than the above ans:
Using sequence generator, expression and filter
transformation
OR
Using mapping variable initialised to zero, expression and
filter transformation.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / rkumar.etl
if you want to process using unix/linux...we can use head
and tail logic to get the records from 21 to 30.
and in informatica we can use rank transformation twice to
get the required results.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / koti
sq generator, filter transformations. write the condition
in filter transformation as select columns from table where
sno>21 and sno<30...
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / giri
Very simple
Using sequent generator then Filter transformation
| Is This Answer Correct ? | 1 Yes | 2 No |
how can we run workflow with pmcmd?
how can we load 365 flat file to a single fact table (target) as a history load in single mapping?
can u apply SCD2 on flat file tgt? if yes wat is the procedure?
What is the Difference between SetVariable and setmaxvariable in informatica?
How to configure mapping in informatica?
Two workflows are running at same time first workflow is succeeded but second workflow is failed but there is no dependencies?
EXL informatica Questions
Can we create multiple integration service on single repository?
suppose we are using dynamic lookup cache and in lookup condition the record is succeeded but in target it is failed due to some reasons then what happened in the cache ?
yesterday my session run ten min.today its run 30min, wt is the reason? if any issues how to solve that?
How to convert multiple rows to single row (multiple columns) in informatica
How to create a mapping ? id date 101 2/4/2008 101 4/4/2008 102 6/4/2008 102 4/4/2008 103 4/4/2008 104 8/4/2008 O/P - shud have only one id with the min(date) How to create a mapping for this