In BIND, isolation level parameter specifies the duration
of page lock and ACQUIRE, RELEASE also do almost the same
thing. What is the exact difference between the two? Do
they work in conjunction while executing SQL queries and
obtaining locks?

Answers were Sorted based on User's Feedback



In BIND, isolation level parameter specifies the duration of page lock and ACQUIRE, RELEASE also d..

Answer / gopi

(1) Isolation specifies type of lock that should be used
(2) Acquire tells when the lock should be acquired
(3) Release tells when it should be unlocked

Is This Answer Correct ?    8 Yes 1 No

In BIND, isolation level parameter specifies the duration of page lock and ACQUIRE, RELEASE also d..

Answer / neeti

Isolation level parameters are used on page level while the
ACQUIRE and RELEASE parameters work on tablespace levels

Is This Answer Correct ?    8 Yes 3 No

In BIND, isolation level parameter specifies the duration of page lock and ACQUIRE, RELEASE also d..

Answer / p praveen kumar

1) Isolation specifies types of locks to be used by
Repeatable Reads(Table space locks), Reads
Stability(page level locks), Cursor Stability(Row level Locks)
Uncommitted locks(no Locks)

2) Acquire tells when the lock should be acquired(USE,ALLOCATE)

3) Release tells when it should be unlocked(COMMIT, DEAL LOCATE)

Is This Answer Correct ?    4 Yes 1 No

In BIND, isolation level parameter specifies the duration of page lock and ACQUIRE, RELEASE also d..

Answer / guest

ACQUIRE, RELEASE determines when a partition, table or
tablespace lock will be acquired and released. ISOLATION
determines when a row, page lock will be acquired and
released. PAGE, ROW locks are released depending on the
ISOLATION level but almost always at commit or rollback.

Is This Answer Correct ?    3 Yes 1 No

In BIND, isolation level parameter specifies the duration of page lock and ACQUIRE, RELEASE also d..

Answer / priya

When a tablespace is locked, another task cannot have
access to the entire table itself. So here, does page level
locking matter and what difference remains between
ISOLATION and ACQUIRE/RELEASE?

Is This Answer Correct ?    1 Yes 1 No

In BIND, isolation level parameter specifies the duration of page lock and ACQUIRE, RELEASE also d..

Answer / rrgust

In ACQUIRE there are two options are available 1) Use
2)Allocate. When the bind card contains ACQUIRE(USE) when
there there is first hit to the table, lock willbe held. If
you use the second option, during the executin the lock
will be held.

Reg: RELEASE, it will take RELEASE(COMMIT). Once commit is
perfomed, the lock will be released..

Is This Answer Correct ?    3 Yes 3 No

In BIND, isolation level parameter specifies the duration of page lock and ACQUIRE, RELEASE also d..

Answer / g

ACQUIRE, RELEASE parameters refer to when the resources for
the application program will be acquired and released. This
includes when datasets will be allocated/deallocated, when
storage will be allocated/deallocated for DBDs,
plans/packages in EDM pool.

Is This Answer Correct ?    2 Yes 2 No

In BIND, isolation level parameter specifies the duration of page lock and ACQUIRE, RELEASE also d..

Answer / madhu

1) Acquire and Release are effective when lock rule of tablespace is either table lock or tablespace lock. In this case, bind level isolation has no effect.

2) Isolation Level is effective when lock rule of tablespace is either page lock or row lock. In this case, Acquire and Release has no effect.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More DB2 Interview Questions

Define predicate?

0 Answers  


Is there any advantage to denormalizing DB2 tables?

1 Answers  


Suppose if I need to update a column, how you do that using cursor?

2 Answers   Verizon,


If a non-DB2 program calls a DB2 program, the calling program's name will be there in SYSIN of IKJEFT01 and the plan name will be that of the called program. But is a bind needed or a plan has to be created for the non-DB2 program also?

1 Answers   RBS,


What is QUIESCE?

2 Answers  






how can i pull up a query which was previously stored in qmf

3 Answers  


What is the maximum number of columns in a db2 table?

0 Answers   IBM,


could you give me an example how, where i code CHECKPOINT and restart...I need and example....thanks..

5 Answers  


Which catalog table stores referential constraints?

1 Answers  


What is drop table?

0 Answers  


What is referential integrity?

5 Answers  


DB2 is a A) data base/data communication system B) data base C) RDBMS D) Programming language

4 Answers   Accenture,


Categories