When is the results table for the query in a DECLARE CURSOR
statement created?
Answer Posted / s
When OPEN CURSOR is executed
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What are the uses of db2 optimizer?
Define db2.
What is ibm db2 used for?
What's The Error Code For Unique Index Voilation?
How do I add a column to a table in db2?
What is cursor stability in db2?
What is db2 bind?
File not opened because library is *PROD and debug is UPDPROD(*NO). ? what may be the reason? how to solve it..?
What is the difference between spufi and qmf?
How do you concatenate the firstname and lastname from emp table to give a complete name?
Comment whether the cursor is closed during commit or not.
How to run db2 command in windows?
What is coalesce 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.
What is bind in db2?