1) In a dataset how to delete a single row?
2) i have 50 rows , i want to display 5-7 records only?
How to write the sql query?
3)i have 40 rows,i want to display last row? write sql query?

Answers were Sorted based on User's Feedback



1) In a dataset how to delete a single row? 2) i have 50 rows , i want to display 5-7 records only?..

Answer / segu satish

answer for 3rd question:

select * from emp where rowid =(select max(rowid) from emp)

Is This Answer Correct ?    13 Yes 1 No

1) In a dataset how to delete a single row? 2) i have 50 rows , i want to display 5-7 records only?..

Answer / srinu

1) using external filter we use command is sed we get
2)select * from (select rownum rno,emp.* from emp)
where rno in(5,6,7)
or
select * from (select rownum rno,emp.* from emp)
where rno between 5 and 7
or
select * from emp where rownum<8
minus
select * from emp where rownum<5
in first two are very efiiciency compare to third one
because in third iam using set operator
3)select * from emp where rowid=(select max(rowid) from emp);

Is This Answer Correct ?    11 Yes 0 No

1) In a dataset how to delete a single row? 2) i have 50 rows , i want to display 5-7 records only?..

Answer / reddy obul

__for 2nd question answer is:
select * from table where rowid<8 minus select * from table
where rowid<5
__for 3rd quesion answer is:
select * from emp where rowid in(select max(rowid) from emp)

Is This Answer Correct ?    9 Yes 9 No

1) In a dataset how to delete a single row? 2) i have 50 rows , i want to display 5-7 records only?..

Answer / sarath

for 2nd:
select * from table where rownum<8 minus select * from table where rownum<5;

Is This Answer Correct ?    4 Yes 4 No

1) In a dataset how to delete a single row? 2) i have 50 rows , i want to display 5-7 records only?..

Answer / ravi

1 answere : we can use @rownum =1 and reject the first record....

Is This Answer Correct ?    0 Yes 0 No

1) In a dataset how to delete a single row? 2) i have 50 rows , i want to display 5-7 records only?..

Answer / subbu

2nd answer:

select * from(select rowid from tablename where rowid between 5 and 7);

Is This Answer Correct ?    0 Yes 2 No

1) In a dataset how to delete a single row? 2) i have 50 rows , i want to display 5-7 records only?..

Answer / ritesh chatterjee

Answer to Qust 1

Sed 1d "Dataset Name" from unix by this way you can delete
1st record from dataset,in place of 1 you can place any number.

Answer to Question 2

select * from tablename
where rowid between 2 and 7;

Answer to 3rd qus:-

select * from tablename
where rownum = 40;

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Data Stage Interview Questions

when we will use connected Lookup & Unconnected Lookup

3 Answers   Wipro,


source 1123445 I WANT OUTPUT AS DUPLICATES TO TARGET1 LIKE TARGET1 1144 NON-DUPLICATES TO TARGET2 TARGET2 235

6 Answers   US Technology,


What is APT_DUMP_SCORE?

2 Answers   IBM,


Lookup constraints

0 Answers   CTS,


when will you go for dataset and fileset?

2 Answers   Accenture,






HOw Hash Partion Works Thank you in Advance i have doubts on Hash Partion TEch Could please give me the clear understandable notation example e_id,dept_no 1,10 2,10 3,20 4,20 5,30 6,40 i have TWo Nodes/Three Nodes My questions are: 1).if i select hash key as e_id how Hash partion will distribute the data in to two NOdes/three NOdes 2).if i select hash key as dept_no how Hash partion will distribute the data in to two NOdes/three NOdes sivakumar.katta7@gmail.com

5 Answers   FIS,


Is it possible to query a hash file?

0 Answers   IBM,


DataStage Scenario based Interview Questions

1 Answers  


Distinguish between informatica & datastage. Which one would you choose and why?

0 Answers  


What can we do with datastage director?

0 Answers  


1.new record it will insert but changes of natural key is not present in taget i want to update (here key is composite natural key )can any one help this to explan how to do

0 Answers   IBM,


Define Job control?

0 Answers  


Categories