how to fetch multiple records without using cursor
Answer Posted / om yaddav
hi srini......
how can do in DB@...
?
write with sentax with example.
thans
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to find the number of rows in a db2 table?
Mention the different locking levels that are available in db2.
What are the 2 sqlcodes that are returned?
Name the lockable units in DB2?
What does db2 stand for?
Why do we need reorg in db2?
SET is the ANSI standard for variable assignment, SELECT is not. SET can only assign one variable at a time, SELECT can make multiple assignments at once. If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) As far as speed differences - there are no direct differences between SET and SELECT. However SELECT's ability to make multiple assignments in one shot does give it a slight speed advantage over SET.
Can there be more than one cursor open for any program?
What is scrollable cursor in db2?
What is multi row fetch in db2?
What is innodb buffer pool?
If the cursor is kept open followed the issuing of commit, what is the procedure to leave the cursor that way?
What is the picture clause of null indicator variable?
run jcl for cobol+db2 pgm?.. //jobcard //step001 exec pgm=ikjeft01 //systin dd * DSNSYSTEM(--------) RUN PROGRAM(MYPGMNAME) PLAN(-----), LIB(-------), PARMS(------) /* WHAT WILL U GIVE INSIDE THE BRACKETS... WHAT IS PLAN,PACKAGE,BIND?..PLAN N PACAKGES ARE GENERATED BY ?...
What is the role of the data page in the db2 database?