oracle回滚和提交

发布于 2024-12-06 14:03:58 字数 159 浏览 1 评论 0原文

在以下sql语句中:

BEGIN
update table1 set col1 = 'Y';
commit;
update table2 set col2 = 'Y';
rollback;
end;
/

它会回滚所有更新还是仅更新#2?

In the following sql statements:

BEGIN
update table1 set col1 = 'Y';
commit;
update table2 set col2 = 'Y';
rollback;
end;
/

Will it rollback both the updates or only update #2?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

此生挚爱伱 2024-12-13 14:03:58

只是#2

您可能对保存点感兴趣

Just #2

You might be interested in save points

短叹 2024-12-13 14:03:58

您的语句将仅回滚当前事务。即table2的更新。

当您发出提交时,您结束了 table1 事务的更新。

正如 vc74 所说,保存点是一个有用的工具,用于控制可以回滚到的位置,而无需发出提交等。

Your statement will rollback only the current transaction. i.e. the update of table2.

You ended the update of table1 transaction when you issued a commit.

As vc74 says, save points are a useful tool for controlling where you can rollback to without having to issue commits etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文