oracle update触发器如何获取被修改的字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle update触发器如何获取被修改的字段相关的知识,希望对你有一定的参考价值。
即使:new和:old值没有变化 比如:tab表中字段a=1,b=2,c=3,d=4,执行了SQL语句:update tab set a=1,c=3,怎么在该表的UPDATE触发器中知道修改了字段a和c的值?
业务逻辑:
只要更新了字段a一次,不管a更新前后值是否一致,都让d=d+1,比如依次执行以下语句:
update tab set a=2,c=33; --此时触发器中执行::new.d:=:old.d+1;
update tab set a=2; --触发器中执行::new.d:=:old.d+1;
update tab set c=333; --触发器不执行:new.d:=:old.d+1;
update tab set b=22,c=333; --触发器不执行::new.d:=:old.d+1;
update tab set a=1,b=222; --触发器执行::new.d:=:old.d+1;
多写几个if判断就可以实现。如
创建测试表及插入数据:
create table test(id int,
name varchar2(10),
money int);
insert into test values (1,\'张三\',100);
insert into test values (2,\'李四\',29);
insert into test values (3,\'王五\',50);
insert into test values (4,\'赵六\',56);
commit;
创建触发器:
before update
on test
for each row
begin
if updating (\'name\')
then dbms_output.put_line(\'name字段被修改\');
elsif updating (\'money\')
then dbms_output.put_line(\'money字段被修改\');
end if;
end;
执行update语句,进行测试:
commit;
结果截图:
after update on tab
for each row
for each row就会捕获到你任何update 不管相同与否 参考技术C 在update触发器中用of来实现 参考技术D 可以写啊,sample if(:new.a != :old.a) then dbms_output.put_line('a改变') end if;
if updating('a') then dbms_output.put_line('a改变') end if;
--试试第二个;本回答被提问者和网友采纳
在Oracle触发器中如何执行多条update语句?
我在两个库之间通过同义词创建了表的连接。实现当一个库中的表mds_wm_newnotice更新时,自动更新另一个库中的表daoyu对应的记录。现在同义词没有问题,创建的触发器如下:
create or replace trigger ag_sm_org
before update on mds_wm_newnotice
for each row
begin
update daoyu set
name=:new.ntwriter
where smid=:old.pkid;
update daoyu set
province=:new.nttitle
where smid=:old.nttitle;
end;
当更新表mds_wm_newnotice后,oracle提示如下错误:
ORA-02055:分布式更新操作失败:要求回退
ORA-01722:无效数字
ORA-02063:紧接着line(起自TESTLINK)
ORA-06512:在"SGS_QZ_MDS_RUSTER.AG_SM_ORG",line 6
ORA-04088:触发器'SGS_QZ_MDS_RUSTER.AG_SM_ORG'执行过程中出错
查了下,说是因为在触发器中不能连着执行两个update语句。
后来我试着用两个存储过程pro_updateprovince和pro_updatetitle分别取代上述触发器中的update语句:
create or replace procedure "pro_updatetitle" (ntwriter in varchar2,pkid in long)
as
strsql varchar2(100);
begin
strsql := 'update daoyu set name=''' || ntwriter || ''' where smid=' || pkid;
execute immediate strsql;
end pro_updatetitle;
和
create or replace procedure "pro_updateprovince" (nttitle in varchar2,pkid in long)
as
strsql varchar2(100);
bengin
strsql := 'update daoyu set province=''' || nttitle || ''' where smid=' || pkid;
execute immediate strsql;
end pro_updateprovince;
并把触发器改成(触发器没有提示错误):
create or replace trigger ag_sm_org
before update on mds_wm_newnotice
for each row
begin
pro_updateprovince(:new.nttitle,:new.pkid);
pro_updatetitle(:new.nttitle,:new.pkid);
end;
然后更新表mds_wm_newnotice时又说找不到updateprovince的声明。
请问我该怎么做哪?如何才能在一个触发器中先后执行多条update语句?
请详细说明。
2、“ntwriter in varchar2,pkid in long”,这个数据类型 long 改成number试一下。
3、测试一下所有的同义词是否可以操作,执行更新操作,看是否可以进行。 参考技术B 改成如下:
begin
if :old.ntwriter<>:new.ntwriter then --加一个条件判断
update daoyu set
name=:new.ntwriter
where smid=:old.pkid;
end if;
if :old.nttitle<>:new.nttitle then --加条件判断
update daoyu set
province=:new.nttitle
where smid=:old.nttitle;
end if;
end;
希望对你有帮助。
以上是关于oracle update触发器如何获取被修改的字段的主要内容,如果未能解决你的问题,请参考以下文章
oracle 如何返回当前序列值 比如我insert语句过后立刻要获取当前insert结果的序列值,怎么做,求救......
oracle当表A1,数据发生update时,将字段time更新为当前时间