Answer Posted / satty
bind parameter replace is a parameter related to locking
technique. it will specify when to remove the lock.
if any thing wrong please intimate me
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
Can there be more than one cursor open for any program?
Why do we bind in db2?
List down the data types in the db2 database.
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 are the various data types available in db2?
What is the use of commit in db2?
What do you mean by rollback?
Which command is used to remove all rows from a table?
What is explain plan in db2?
What is the use of runstats in db2?
What is declare cursor?
Give the name of some fields form sqlca.
Explain db2.
How to find primary key of a table in db2?
What is null in db2?