我可以更改 Oracle 中的隔离级别吗?
我正在 Oracle 中编写一个事务。 我可以更改此事务中一个 select 语句的隔离级别吗? 现在我有了读提交,我想在事务中将其更改为可序列化,然后再返回读提交。
此致, 格雷戈里
I'm writting a transaction in Oracle.
Can I change isolation level within this transaction for one select statement?
Now I have Read Commit, and I want within transaction change this once to serializable and next back to the read commit.
Best Regards,
Gregory
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 SQL 中,您可以使用 SET TRANSACTION 语句
例如:
In SQL, you can use the SET TRANSACTION statement
For example: