how do u get the first record from 50,000 records ?
Answer Posted / amedela chandra sekhar
Select * from(select rownum as rno,emp.* from emp) where rno=&n
EX:
SQL> Select * from(select rownum as rno,emp.* from emp) where rno=&n;
Enter value for n: 1
old 1: Select * from(select rownum as rno,emp.* from emp) where rno=&n
new 1: Select * from(select rownum as rno,emp.* from emp) where rno=1
RNO EMPNO ENAME JOB MGR HIREDATE SAL
---------- ---------- ---------- --------- ---------- --------- ----------
COMM DEPTNO
---------- ----------
1 7369 SMITH CLERK 7902 17-DEC-80 800
20
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is persistent lookup cache?
What are the components of the workflow manager?
What is pmcmd command?
Give one example for each of conditional aggregation, non-aggregate expression, and nested aggregation?
What are mapplets?
explan ur project architecture?
design of staging area?
How to extract the informatica rejected data?
What is dimensional table?
Why can't we connect source qualifier and aggrigator transformation to an expression ? Why they resticted to conncet 2 active trasformations to an passive transformation ?
How many transformations can be used in mapplets.
can we override a native sql query within informatica? Where do we do it? How do we do it?
What is the difference between source qualifier transformations source filter to filter transformation?
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
What is update strategy transform?