Answer Posted / shaheed ul haq sadi
1) Shared
A shared lock reserves its object for reading only. It
prevents the object from changing while the lock remains.
More than one program can place a shared lock on the same
object. More than one object can read the record while it is
locked in shared mode.
2) Exclusive
An exclusive lock reserves its object for the use of a
single program. This lock is used when the program intends
to change the object.
You cannot place an exclusive lock where any other kind
of lock exists. After you place an exclusive lock, you
cannot place another lock on the same object.
3) Promotable/Update
A promotable (or update) lock establishes the intent to
update. You can only place it where no other promotable or
exclusive lock exists. You can place promotable locks on
records that already have shared locks. When the program is
about to change the locked object, you can promote the
promotable lock to an exclusive lock, but only if no other
locks, including shared locks, are on the record at the time
the lock would change from promotable to exclusive. If a
shared lock was on the record when the promotable lock was
set, you must drop the shared lock before the promotable
lock can be promoted to an exclusive lock.
| Is This Answer Correct ? | 47 Yes | 9 No |
Post New Answer View All Answers
Is sqlite good enough for production?
Is sql better than access?
Is oracel sql developer written in java?
What is sql partition function?
how to run 'mysql' commands from a batch file? : Sql dba
Lookups are a key component in sql server integration services (ssis). Explain its purpose?
How many indexes can be created on a table in sql?
How do I use google cloud in sql?
What are types of joins?
What is left join in sql?
What is the difference between in and between in sql?
How do I remove duplicates in two columns?
How do you use a while loop in pl sql?
What are the advantages of normalization?
What is rename command in sql?