Transaction Parameters
The main parameters of a transaction are:
-
data access mode (
READ WRITE
,READ ONLY
) -
lock resolution mode (
WAIT
,NO WAIT
) with an optionalLOCK TIMEOUT
specification -
isolation level (
READ COMMITTED
,SNAPSHOT
,SNAPSHOT TABLE STABILITY
).NoteThe
READ UNCOMMITTED
isolation level is a synonym forREAD COMMITTED
, and is provided only for syntax compatibility.It provides identical semantics asREAD COMMITTED
, and does not allow you to view uncommitted changes of other transactions. -
a mechanism for reserving or releasing tables (the
RESERVING
clause)