Comparing SET TRANSACTION with SET ISOLATION
SET TRANSACTION Isolation Level | SET ISOLATION Isolation Level |
---|---|
Read Uncommitted | Dirty Read |
Read Committed | Committed Read |
[ Not supported ] | Cursor Stability |
(ANSI) Repeatable Read | (HCL OneDB) Repeatable Read |
Serializable | (HCL OneDB) Repeatable Read |
Another difference between SET TRANSACTION and SET ISOLATION is the behavior of the isolation levels within transactions. You can issue SET TRANSACTION only once for a transaction. Any cursors that are opened during that transaction are guaranteed that isolation level (or access mode, if you are defining an access mode). With SET ISOLATION, after a transaction is started, you can change the isolation level more than once within the transaction.
EXEC SQL BEGIN WORK; EXEC SQL SET ISOLATION TO DIRTY READ; EXEC SQL SELECT ... ; EXEC SQL SET ISOLATION TO REPEATABLE READ; EXEC SQL INSERT ... ; EXEC SQL COMMIT WORK; -- Executes without error
EXEC SQL BEGIN WORK; EXEC SQL SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; EXEC SQL SELECT ... ; EXEC SQL SET TRANSACTION ISOLATION LEVEL READ COMMITTED; -- Produces error 876: Cannot issue SET TRANSACTION -- in an active transaction.
An additional difference between SET ISOLATION and SET TRANSACTION is the duration of isolation levels. Because SET ISOLATION supports complete-connection level settings, the isolation level specified by SET ISOLATION remains in effect until another SET ISOLATION statement is issued. The isolation level set by SET TRANSACTION only remains in effect until the transaction terminates. Then the isolation level is reset to the default for the database type.