Answer Posted / s
QUIESE is used to establish a consistency point for the
named tablespaces. It issues a drain lock to disallow any
further processing and allows the currently executing UOW
to commit. Writes all the changed pages from the buffer to
DASD. The RBA is noted in the SYSCOPY.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is a Foreign Key?
How to execute stored procedure in db2 command editor?
What is explain plan in db2?
Define sqlca.
Which isolation level provides highest data integrity?
What is universal database?
Define predicate?
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 the physical storage length of time data type?
What is the maximum length of sqlca?
Which component is used to execute the sql statements?
What is the difference between drop table and delete table?
Mention a credible reason why select* is never given preference in an sql program that has been embedded.
What is bind package and plan in db2?
Is it possible using max on a char column?