![]() |
|||
|
![]() |
![]() |
|
FULL A - Z Oracle Function Library (formerly named "Morgan's Library")
![]() Term: ISOLATION
Definition: SET TRANSACTION ISOLATION LEVEL READ COMMITTED; (transaction level) SERIALIZABLE TRANSACTIONS: A SQL query can access the data which has been committed before the current transaction has begun, but changes in the current transaction will not be visible. Note that it cannot be set for distributed transactions. Only those changes that were committed at the time the transaction began, plus those changes made by the transaction itself through INSERT, UPDATE, and DELETE statements will be seen. Example Usage: SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; (transaction level) READ ONLY: Data cannot be modified in the transaction but SQL query can access data committed before the current transaction. Only changes that were committed at the time the transaction began and do not allow INSERT, UPDATE, and DELETE statements will be seen. Example Usage: SET TRANSACTION ISOLATION LEVEL READONLY; (transaction level) Related Links: |
![]() |
Home | Search | Code Library | Sponsors | Privacy | Terms of Use | Contact Us | © 2003 - 2025 psoug.org |