gpt4 book ai didi

oracle - 什么时候应该在游标中使用 'for update nowait'?

转载 作者:行者123 更新时间:2023-12-03 21:39:28 25 4
gpt4 key购买 nike

在这种情况下,我们需要在游标中使用for update nowait

最佳答案

使用for update nowait将导致行繁忙并获得锁,直到执行提交或回滚为止。
任何其他尝试获取锁的 session 都将收到Oracle错误消息,例如ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired,而不是等待锁释放。

session 1:

CURSOR abc_cur 
IS
select * from dept where deptno =10 for update nowait;

在这里,行被锁定,直到关闭游标或执行提交/回滚为止。同时,如果 session 2中的另一个用户尝试访问相同的记录,则将引发错误,如下所示:

session 2:
select * from dept where deptno =10 for update nowait;

该用户甚至无法更新或删除已被第一个 session 锁定的相同记录。
ERROR at line 1:
`ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired`

用法:
现在,如果您要对某些记录集进行某些操作,并且不希望其他 session 中的其他用户覆盖您的数据,则必须首先锁定记录(使用 for update nowait),然后进行操作。完成操作后,关闭光标并提交。

编辑
假设temp中有10行,并且我在 session 1中执行以下脚本:
declare
cursor abc is select * from temp for update nowait;
temp abc%rowtype;
begin
open abc;
-- do slow stuff here
close abc;
commit;
end;

在 session 2中,我在 session 1中的脚本仍在运行时执行以下命令
select * from temp;

10 rows found

如果我在 session 2中执行相同的脚本,而 session 1中的脚本仍在运行
declare
cursor abc is select * from temp for update nowait;
temp abc%rowtype;
begin
open abc;
-- do slow stuff here
close abc;
commit;
end;

然后我得到 ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired instead of waiting the lock to release.

关于oracle - 什么时候应该在游标中使用 'for update nowait'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13248239/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com