In my table having 3000 Records. How can I delete the 500th
row? (we don't know what is data inside the table)
Answers were Sorted based on User's Feedback
Answer / pratap
delete from table where ROWNUM = 500;
As per IBM notes ROWNUM is support feature in DB2.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / suraj kumar pathak
SELECT * FROM (SELECT col1,col2,col3, rownumber() over() AS rn FROM tab1) as tr WHERE rn = 500;
| Is This Answer Correct ? | 4 Yes | 5 No |
How to resolve the soc4 and soc7 errors?
A table has two indexes defined. Which one will be used by the SEARCH?
how can we code index in an array of cobol pgm?
1.give the details about WHEN OTHER. 2. how many form are available in evaluate.
What is XDC ?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
RENAME clause takes new SPACE in memory.TRUE or FALSE? a)TRUE 2)FALSE
How can we increase the size of an existing PDS to include more no. of modules. I tried the answer posted by Jagan(TSO PDS 'pds name') but did not find it working. The answer posted by kamal i know very well. Please suggest me a answer so that we don't need to delete the existing PDS and still we can change the size as well.
01 a pic x(6) value is abcdef 01 b pic x(3) move a to b wht will be the value in b ?
period is missing in the cobol program which error we getting
Can you please let me know the centre name of INS certification in Kolkata.
If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?