Oracle Locking: Sandeep Thakur
Oracle Locking: Sandeep Thakur
Oracle Locking
Oracle Locking Agenda
Oracle Locking a Brief Description
Oracle Isolation Levels
Setting Isolation Level
Oracle Lock Duration
Oracle Lock Modes
Oracle Lock Types
Oracle DML Lock Types/Modes
Oracle DDL Locks Modes
Oracle Lock Escalation
Deadlocks
Snapshot too old brief description
Oracle Locking a Brief Description
Locks are mechanisms that prevent destructive
interaction between transactions accessing the same
resource.
Read Committed (Default)
Serializable Transactions
Read-only
Oracle Isolation Levels
Read Committed (Oracle Default)
Indicates that a transaction holding the lock has made one or more
updates to rows in the table. A row exclusive table lock is acquired
automatically by: INSERT, UPDATE, DELETE, LOCK TABLE.. IN
ROW EXCLUSIVE MODE; A row exclusive table lock is slightly
more restrictive than a row share table lock.
More restrictive than a share table lock. A share row exclusive table
lock is acquired for a table as follows: LOCK TABLE <table> IN
SHARE ROW EXCLUSIVE MODE;