加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Oracle 11g保证存储过程同时只能被一个线程执行

发布时间:2020-12-12 14:49:01 所属栏目:百科 来源:网络整理
导读:create or replace procedure p_test as l_lock_id number; resource_busy exception; pragma exception_init(resource_busy,-54); begin if ( dbms_lock.request(id = 112233, lockmode = dbms_lock.x_mode, timeout = 0, release_on_commit = TRUE ) 0 ) t
create or replace procedure p_test as
l_lock_id number;
resource_busy exception;
pragma exception_init(resource_busy,-54);
begin
if ( dbms_lock.request(id => 112233,
lockmode => dbms_lock.x_mode,
timeout => 0,
release_on_commit => TRUE ) <> 0 )
then
raise resource_busy;
end if;
dbms_lock.sleep(100);
commit;

end;


session1:运行100s后结束

SQL>call p_test();


session2:

SQL> call p_test(); call p_test() * 第 1 行出现错误: ORA-00054: 资源正忙,但指定以 NOWAIT 方式获取资源,或者超时失效 ORA-06512: 在 "TEST.P_TEST",line 11

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读