posted 23 years ago
"serializable transaction" means that a
query only see the data that was commited before the query starts
and all the data modified by its own transaction. "Read commited" means that the query
can only see the data that was commited before the start. If you are giving the command "set transaction isolation level serializable", it influences only
the next transaction. After the transaction is committed, the isolation level
reverts to the default "read committed". If the "set transaction isolation
level serializable" statement is not executed again before the next transaction,
that transaction will have an isolation level of "read committed".
hope it helps!
Beksy