Answering Can I skip any changes if I replace the oracle trigger while my application is running? I went to see if the trigger was blocked by an INSERT expression. This is not the case, and I cannot find anything on the Internet to suggest that the trigger can be blocked.
If I run the following in one session:
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;
and then in the second session try to figure out which locks are occurring, I get the following:
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
According to Oracle, the trigger is not blocked.
However, if I try to replace a trigger while the INSERT statement is executing, it will not be replaced until the statement completes (not including a commit), which means that the trigger is locked.
In this situation, the trigger is locked, and if so, how would you determine what it is?
source share