oracle触发器:为什么update可以触发,但是insert就不行啊!大神们快围观啊!!!!!!

CREATE OR REPLACE TRIGGER b2b_person_tri
AFTER INSERT OR UPDATE ON SYS_PERSON
FOR EACH ROW

DECLARE
v_entryid NUMBER(10);
v_personinfoid number(10);
PRAGMA AUTONOMOUS_TRANSACTION;

BEGIN
CASE
WHEN INSERTING THEN
select count(*) into v_entryid from sys_person p,b2b_entryconf t
where p.entryid = t.entryid
and p.personid = :new.personid;

if v_entryid > 0 then
select sys_nextid_fun('EDIS_UNTINTF_SEQ') into v_personinfoid from dual;
insert into edis_untintf(
edis_untintf_seq,
edis_untintf_sourceid,
edis_untintf_comefrom,
edis_untintf_intfname,
edis_untintf_credate,
edis_untintf_modol
)
values(
v_personinfoid,
:new.personid,
'SYS_PERSON',
'B2B',
sysdate,
'insert'
);
end if;
WHEN updating THEN
select count(*) into v_entryid from sys_person p, b2b_entryconf t
where p.entryid = t.entryid
and p.personid = :old.personid;

         if v_entryid > 0 then
            select sys_nextid_fun('EDIS_UNTINTF_SEQ') into v_personinfoid from dual;
            insert into edis_untintf(
                   edis_untintf_seq,
                   edis_untintf_sourceid,
                   edis_untintf_comefrom,
                   edis_untintf_intfname,
                   edis_untintf_credate,
                   edis_untintf_modol
            )
            values(
                   v_personinfoid,
                   :old.personid,
                   'SYS_PERSON',
                   'B2B',
                   sysdate,
                   'update'
            );
            commit;
       end if;

END CASE;

END;

不大懂你写的啥,不过好像如果模式都一样的话你在insert下面好像没有提交

楼主你确定你的case的两个then都执行了吗,insert执行了吗,会不会是根本不满足条件没有执行insert所以没有触发

如果你插入了数据,那就一定会触发的。
只是你的判断条件 if v_entryid > 0 then 不一定成立罢了