• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Oracle触发器表发生了变化 触发器不能读它的解决方法(必看)

    出现原因,是因为在更新的的表和读取的表是同一个表。

    CREATE or replace TRIGGER T_userupdateT BEFORE update ON T_user REFERENCING OLD AS old NEW AS N_ROW  FOR EACH ROW 
    DECLARE U_xtfidemp1 varchar(36);
     u_xtempcode1 varchar(20);
     u_xtempcodeCount int:=0; 
     U_xtfidempCount int:=0; 
     u_id1 int:=0; 
    BEGIN 
     U_xtfidemp1:=:N_ROW.U_xtfidemp;
     u_xtempcode1:=:N_ROW.u_xtempcode;
     u_id1:=:N_ROW.u_id;
     select count(u_xtempcode) into u_xtempcodeCount from eas.T_user where u_xtempcode is not null and u_xtempcode=u_xtempcode1 and u_id>u_id1;
     select count(U_xtfidemp) into U_xtfidempCount from eas.T_user where U_xtfidemp is not null and U_xtfidemp=U_xtfidemp1 and u_id>u_id1; 
     IF u_xtempcodeCount>0 or U_xtfidempCount>0 THEN
         RAISE_APPLICATION_ERROR(-20001, 'eas.T_user u_xtempcode,U_xtfidemp,U_GZCode更新数据时有错误,有重复');
     END IF;
     end;
    

    出现错误时,是因为触发器在T_userupdateT在T_user上,触发器内部有读取了T_user所以有错误。

    修改如下

    CREATE or replace TRIGGER T_userupdateT BEFORE update ON T_user REFERENCING OLD AS old NEW AS N_ROW  FOR EACH ROW 
    DECLARE U_xtfidemp1 varchar(36);
     u_xtempcode1 varchar(20);
     u_xtempcodeCount int:=0; 
     U_xtfidempCount int:=0; 
     u_id1 int:=0; 
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN 
     U_xtfidemp1:=:N_ROW.U_xtfidemp;
     u_xtempcode1:=:N_ROW.u_xtempcode;
     u_id1:=:N_ROW.u_id;
     select count(u_xtempcode) into u_xtempcodeCount from eas.T_user where u_xtempcode is not null and u_xtempcode=u_xtempcode1 and u_id>u_id1;
     select count(U_xtfidemp) into U_xtfidempCount from eas.T_user where U_xtfidemp is not null and U_xtfidemp=U_xtfidemp1 and u_id>u_id1; 
     IF u_xtempcodeCount>0 or U_xtfidempCount>0 THEN
         RAISE_APPLICATION_ERROR(-20001, 'eas.T_user u_xtempcode,U_xtfidemp,U_GZCode更新数据时有错误,有重复');
     END IF;
    COMMIT;
     end;
    

    多了PRAGMA AUTONOMOUS_TRANSACTION;COMMIT;两句

    以上这篇Oracle触发器表发生了变化 触发器不能读它的解决方法(必看)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

    您可能感兴趣的文章:
    • Oracle触发器实例代码
    • Oracle使用触发器和mysql中使用触发器的案例比较
    • Oracle触发器用法实例详解
    • Oracle中使用触发器(trigger)和序列(sequence)模拟实现自增列实例
    • oracle监控某表变动触发器例子(监控增,删,改)
    • [Oracle] 如何使用触发器实现IP限制用户登录
    • oracle 存储过程和触发器复制数据
    • oracle 触发器 实现出入库
    • oracle 触发器 学习笔记
    • 详解oracle中通过触发器记录每个语句影响总行数
    上一篇:oracle数据迁移到db2数据库的实现方法(分享)
    下一篇:EF 配置Oracle数据库的具体操作方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Oracle触发器表发生了变化 触发器不能读它的解决方法(必看) Oracle,触发器,表,发生了,