Answer Posted / sabahat khan
The ACQUIRE and RELEASE options of bind determine when DB2
locks an object (table, partition, or table space)which
your application uses and when it releases the lock.
The options apply to static SQL statements(like Embedded
SQL statement in application program), which are bound
before your program executes. If your program executes
dynamic SQL statements, the objects they lock are locked
when first accessed and released at the next commit point
though some locks acquired for dynamic SQL might be held
past commit points.
ACQUIRE(ALLOCATE)
Acquires the lock when the object is allocated. This option
is not allowed for BIND or REBIND PACKAGE.
ACQUIRE(USE)
Acquires the lock when the object is first accessed.
RELEASE(DEALLOCATE)
Releases the lock when the object is deallocated (the
application ends). The value has no effect on dynamic SQL
statements, which always use RELEASE(COMMIT)
RELEASE(COMMIT)
Releases the lock at the next commit point, unless cursors.
If the application accesses the object again, it must
acquire the lock again.
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is a db2 cursor?
What is db2 stogroup?
What is lock escalation in db2?
What is the purpose of rollback and commit?
What is the difference between oracle and db2?
What is the use of runstats in db2?
How and when does the db2 enforces the unique key?
What is collection in db2 bind?
What is the result of open cursor statement?
How can you quickly find out the # of rows updated after an update statement?
What is dclgen in db2?
How do you concatenate the firstname and lastname from emp table to give a complete name?
What is db2? Explain.
Define db2.
Mention the location where the output received from explain statement is stored.