What is concurrency?
Concurrency: two or more transactions that read/change shared data at the same time. Isolate our transaction from other transactions
Transaction isolation levels
READ COMMITTED
(default)READ UNCOMMITTED
REPEATABLE READ
SERIALIZABLE
SNAPSHOT
1 2
SET TRANSACTION ISOLATION LEVEL {READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE | SNAPSHOT}
Transaction Isolation Levels
This post is licensed under CC BY 4.0 by the author.
Contents