Oracle Accessing updated records during the same transaction

后端 未结 1 1665
面向向阳花
面向向阳花 2021-01-27 05:49

Using Oracle 10g

Is it possible to get the value of a newly updated field within the same transaction before it is committed.

I am executing a stored procedure w

相关标签:
1条回答
  • 2021-01-27 05:53

    Oracle has a very simple and robust implementation of read consistency:

    • a user sees the latest version of the data, including any changes made by the current transaction, but ...
    • a user cannot see the changes made by any other user until that other user issues a commit, and even then not until executing a new statement.

    This is covered in the Concepts Guide. Find out more.

    0 讨论(0)
提交回复
热议问题