SET TRANSACTION ISOLATION LEVEL
SET TRANSACTION ISOLATION LEVEL { READ COMMITTED | REPEATABLE READ | SERIALIZABLE}
The command SET TRANSACTION ISOLATION is based on ANSI SQL. It sets the transaction isolation level to one of the following:
▪READ COMMITTED
▪REPEATABLE READ
▪SERIALIZABLE
For more details on the isolation levels, see Choosing transaction isolation levels.
See also