Answer Posted / anandrao
This error occures when you are opening the cursor which is
already open in current session.
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
How to execute stored procedures?
How can we retrieve the total number of records in RPG & CLLE?
Which command is used to connect to a database in DB2 ? Give the Syntax.
What is load utility in db2?
What is the difference between "db2ilist" and "db2 get instance" commands in DB2 Database Server?
How is a typical db2 batch pgm executed?
What are db2 objects?
What are bind parameters in db2?
How do I import a csv file into db2?
Explain packages.
What db2 400?
What is rct?
Why do we use cursor?
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 we update view in db2?