Title: RE: Locking tables in Oracle

>-----Original Message-----
>From: Pillai, Rajesh [mailto:[EMAIL PROTECTED]]
>
>What does it mean if locked_mode column is populated with 0 or 3 or
> 6. What kind of locking does it shows (RS, X etc...)?

I know someone has already answered this, but you can find the official answer in the documentation. Look up the description of v$lock in the Server Reference Manual. From the 9.2 manual (Oracle9i Database Reference Release 2 (9.2) Part Number A96536-02), description of column v$lock.lmode:

LMODE NUMBER Lock mode in which the session holds the lock:
0 - none
1 - null (NULL)
2 - row-S (SS)
3 - row-X (SX)
4 - share (S)
5 - S/Row-X (SSX)
6 - exclusive (X) 

Reply via email to