在回答如果我在我的应用程序运行时替换 Oracle 触发器,我会错过任何更改吗?,我去查看触发器是否被 INSERT 语句锁定。事实并非如此,我在互联网上找不到任何建议可以锁定触发器的内容。
如果我在一个会话中运行以下内容:
create table test_trigger (id number);
create table test_trigger_h (id number);
create or replace trigger test_trigger_t
after insert on test_trigger for each row
begin
insert into test_trigger_h (id) values (:new.id);
end;
/
insert into test_trigger
select level
from dual
connect by level <= 1000000;
然后在第二个会话中尝试找出正在发生的锁,我得到以下信息:
select object_name, object_type
, case l.block
when 0 then 'Not Blocking'
when 1 then 'Blocking'
when 2 then 'Global'
end as status
, case v.locked_mode
when 0 then 'None'
when 1 then 'Null'
when 2 then 'Row-S (SS)'
when 3 then 'Row-X (SX)'
when 4 then 'Share'
when 5 then 'S/Row-X (SSX)'
when 6 then 'Exclusive'
else to_char(lmode)
end as mode_held
from v$locked_object v
join dba_objects d
on v.object_id = d.object_id
join v$lock l
on v.object_id = l.id1
join v$session s
on v.session_id = s.sid
;
OBJECT_NAME OBJECT_TYPE STATUS MODE_HELD
-------------------- -------------------- --------------- ---------------
TEST_TRIGGER TABLE Not Blocking Row-X (SX)
TEST_TRIGGER_H TABLE Not Blocking Row-X (SX)
根据 Oracle 的说法,触发器没有被锁定。
但是,如果我在 INSERT 语句运行时尝试替换触发器,它将在语句完成(不包括提交)之后才会被替换,这意味着触发器已被锁定。
在这种情况下,触发器是否被锁定,如果是,如何确定它是?