原因
:old.v_tab_col_nt(r)
和
:new.v_tab_col_nt(r)
:old
:new
仅引用表中受影响列中的旧值和新值(duh!…),而不引用触发器内声明的用户定义类型。
您实际寻找的价值是:
:old.<name of column1>
:new.<name of column1>
.
create or replace trigger my_trigger
after insert or update on temp12
for each row
referencing old as old new as new
begin
/*When-Insert block. 1 record for each column in audit*/
if (INSERTING) then --
insert into audit_table values (id_seq.nextval, '<name of column1>', :old.<name of column1>, :new.<name of column1>, sysdate, user);
insert into audit_table values (id_seq.nextval, '<name of column2>', :old.<name of column2>, :new.<name of column2>, sysdate, user);
insert into audit_table values (id_seq.nextval, '<name of column3>', :old.<name of column3>, :new.<name of column3>, sysdate, user);
.
. --(same for every column)
.
insert into audit_table values (id_seq.nextval, '<name of column16>', :old.<name of column16>, :new.<name of column16>, sysdate, user);
end if;
/*end of When-Insert block*/
/*When-Update block. A new record in audit just for the updated column(s) */
if (UPDATING ( '<name of column1>' )) then --col 1
insert into audit_table values (id_seq.nextval, '<name of column1>', :old.<name of column1>, :new.<name of column1>, sysdate, user);
end if;
if (UPDATING ( '<name of column2>' )) then --col 2
insert into audit_table values (id_seq.nextval, '<name of column2>', :old.<name of column2>, :new.<name of column2>, sysdate, user);
end if;
if (UPDATING ( '<name of column3>' )) then --col 3
insert into audit_table values (id_seq.nextval, '<name of column3>', :old.<name of column3>, :new.<name of column3>, sysdate, user);
end if;
.
. --(same for every column)
.
if (UPDATING ( '<name of column16>' )) then --col 16
insert into audit_table values (id_seq.nextval, '<name of column16>', :old.<name of column16>, :new.<name of column16>, sysdate, user);
end if;
/*end of When-Update block*/
end;
-
如果整个应用程序在DB级别实现了所有用户,
执行的每个PL/SQL块或DDL中的保留字“USER”将
-
他们自己,通过创建自定义用户控件,那么该值必须
通过参数传递(在命名PL/SQL块的情况下)或
在每个表(至少每个表)中包含(非空)列
您希望监视用户活动),以便每个
INSERT
声明是
强制发送该信息,您可以使用
:new.<name of user monitor column>
在…内
你的触发器代码,或者你可以使用
IF (:new.< name of user monitor column > is null) then raise_application_error(-20001, 'User must be specified').
END IF;