gpt4 book ai didi

oracle - 有没有最好的方法来避免在 Oracle 中多次执行进程?

转载 作者:行者123 更新时间:2023-12-03 22:33:06 24 4
gpt4 key购买 nike

假设我有一个 proceduremyproc .这是一个复杂的过程,我不能允许两个实例同时执行 proc。

实际上,我使用 dbms_application_info.set_module 来做到这一点:

procedure start_process is
begin
dbms_application_info.set_module('myproc', 'running');
end;

并在运行该过程之前进行验证:
select 'S'
from v$session v
where v.module = 'myproc'
and v.action = 'running';

在数据库级别,有没有更好的方法来检查这个?

最佳答案

使用 dbms_lock.allocate_unique连同 dbms_lock.request . 使用说明说:

The first session to call ALLOCATE_UNIQUE with a new lock name causes a unique lock ID to be generated and stored in the dbms_lock_allocated table. Subsequent calls (usually by other sessions) return the lock ID previously generated.



我认为这可能是你所追求的。

关于oracle - 有没有最好的方法来避免在 Oracle 中多次执行进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9825012/

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