免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2885 | 回复: 4
打印 上一主题 下一主题

谁能给一个AS400 DB2 trigger的实例? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-08-19 10:01 |只看该作者 |倒序浏览
下面是unix 下db2建立trigger的实例,哪位大侠能给一个as400下的完整例子?多谢了。

DROP TRIGGER WIPPARTSHIS_TIGGER@
CREATE TRIGGER WIPPARTSHIS_TIGGER
  after insert on wippartshis
  referencing new as n
  for each row mode db2sql  
  --when (
  --(-select count(*) from wippartsstock where store_acct=n.storeid and part_nbr=n.partid)>;0
  --and
  --(select count(*) from wipeqpkit where stepid=n.stepid and eqpid=n.eqpid and parttype=n.parttype)>;0
  -- )
  
  begin atomic

  declare stmt             varchar(100) default '';   
  declare vcount_stock     INTEGER      default 0;
  declare vcount_eqpkit    INTEGER      default 0;
  declare m_cur_qty_good   decimal(5)   default 0;
  declare m_cur_qty_recng  decimal(5)   default 0;
  declare m_cur_qty_taskng decimal(5)   default 0;
  declare m_use_qty_good   decimal(5)   default 0;
  declare m_use_qty_recng  decimal(5)   default 0;
  declare m_use_qty_taskng decimal(5)   default 0;
  declare m_new_qty        decimal(5)   default 0;
  declare m_new_qtyng      decimal(5)   default 0;
  declare m_new_qtyngh     decimal(5)   default 0;
  declare m_flag           INTEGER      default 0;
  declare m_curqty         decimal(5)   default 0;
  
  if (select count(*) from wippartsstock where store_acct=n.storeid and part_nbr=n.partid)<=0 then
      SIGNAL SQLSTATE '70018'('WipPartsStock no Record!!');   --物料庫存主檔沒有符合記錄
  elseif (select count(*) from wipeqpkit where stepid=n.stepid and eqpid=n.eqpid and parttype=n.parttype)<=0 then     
      SIGNAL SQLSTATE '70019'('WipEqpKit no Record!!');       --機台備料主檔沒有符合記錄
  end if ;
   
  --set stmt=n.transid;
  if n.qty is null then
     set m_new_qty = 0;
  else
     set m_new_qty = decimal(n.qty);
  end if;
  if n.qtyng is null then
     set m_new_qtyng = 0;
  else
     set m_new_qtyng = decimal(n.qtyng);
  end if ;
  if n.qtyngh is null then
     set m_new_qtyngh = 0;
  else
     set m_new_qtyngh = decimal(n.qtyngh);
  end if ;
  
  ------------------------
  --取 wippartstock 的數量
  ------------------------         
  set m_cur_qty_good = (SELECT decimal(cur_qty_good) FROM wippartsstock WHERE store_acct = n.storeid AND part_nbr = n.partid);
  set m_cur_qty_recng = (SELECT decimal(cur_qty_recng) FROM wippartsstock WHERE store_acct = n.storeid AND part_nbr = n.partid);
  set m_cur_qty_taskng = (SELECT decimal(cur_qty_taskng) FROM wippartsstock WHERE store_acct = n.storeid AND part_nbr = n.partid);
  set m_use_qty_good = (SELECT decimal(use_qty_good) FROM wippartsstock WHERE store_acct = n.storeid AND part_nbr = n.partid);
  set m_use_qty_recng = (SELECT decimal(use_qty_recng) FROM wippartsstock WHERE store_acct = n.storeid AND part_nbr = n.partid);
  set m_use_qty_taskng = (SELECT decimal(use_qty_taskng ) FROM wippartsstock WHERE store_acct = n.storeid AND part_nbr = n.partid);
  
  ------------------------
  --取 wipeqpkit 的數量
  ------------------------
  set m_curqty = (SELECT decimal(curqty) FROM wipeqpkit WHERE stepid = n.stepid AND eqpid = n.eqpid AND parttype = n.parttype);
         
  set m_flag = 0;
  if n.asm_flag = '+' then
        IF m_cur_qty_good - m_new_qty < 0 THEN
           SIGNAL SQLSTATE '70011'('cur_qty_good is not enough!!');     --目前良品數量庫存不足
           set m_flag = 1;
        END IF;   
        IF m_cur_qty_recng - m_new_qtyng < 0 THEN
           SIGNAL SQLSTATE '70012'('cur_qty_recng is not enough!!');    --目前自責不良品數量庫存不足
           set m_flag = 1;           
        END IF;      
        IF m_cur_qty_taskng-m_new_qtyngh < 0 THEN
           SIGNAL SQLSTATE '70013'('cur_qty_taskng is not enough!!');   --目前他責不良品數量庫存不足           
           set m_flag = 1;
        END IF;
        IF m_curqty - m_new_qty < 0 then
           SIGNAL SQLSTATE '70014'('wipeqpkit is not enough!!');        --機台備料數量不足                     
           set m_flag = 1;
        END IF;
        
        if m_flag = 0 then
           UPDATE wippartsstock set cur_qty_good = char(decimal(cur_qty_good) - m_new_qty)
                                   ,cur_qty_recng = char(decimal(cur_qty_recng) - m_new_qtyng)
                                   ,cur_qty_taskng = char(decimal(cur_qty_taskng) - m_new_qtyngh)
                                   ,use_qty_good = char(decimal(use_qty_good) + m_new_qty)
                                   ,use_qty_recng = char(decimal(use_qty_recng) + m_new_qtyng)
                                   ,use_qty_taskng = char(decimal(use_qty_taskng) + m_new_qtyngh)
                                where store_acct = n.storeid and part_nbr = n.partid;
            
           if m_new_qty >; 0 then
              UPDATE wipeqpkit set curqty = char(decimal(curqty) - m_new_qty)
                               WHERE stepid = n.stepid AND eqpid = n.eqpid AND parttype = n.parttype;
                              
                              
           end if ;
        else
           set m_flag = 0;  
           IF m_use_qty_good - m_new_qty < 0  THEN           
              SIGNAL SQLSTATE '70015'('use_qty_good is not enough!!');         --良品使用數量不足                     
              set m_flag = 1;              
           END IF;           
           IF m_use_qty_recng-m_new_qtyng < 0  THEN
              SIGNAL SQLSTATE '70016'('use_qty_recng is not enough!!');        --自責不良品使用數量不足                     
              set m_flag = 1;
           END IF;           
           IF m_use_qty_taskng-m_new_qtyngh < 0 THEN
              SIGNAL SQLSTATE '70017'('use_qty_taskng is not enough!!');       --他責不良品使用數量不足                     
              set m_flag = 1;            
           END IF;
           if m_flag=0 then
              UPDATE wippartsstock set cur_qty_good = char(decimal(cur_qty_good) + m_new_qty)
                                      ,cur_qty_recng = char(decimal(cur_qty_recng) + m_new_qtyng)
                                      ,cur_qty_taskng = char(decimal(cur_qty_taskng) + m_new_qtyngh)
                                      ,use_qty_good = char(decimal(use_qty_good) - m_new_qty)
                                      ,use_qty_recng = char(decimal(use_qty_recng) - m_new_qtyng)
                                      ,use_qty_taskng = char(decimal(use_qty_taskng) - m_new_qtyngh)
                                   where store_acct = n.storeid and part_nbr = n.partid;
           end if;
        end if ;
        
                                      
  end if ;
  
        
  insert into logerror (transtime)
               values (current timestamp);
  
  
end @

论坛徽章:
0
2 [报告]
发表于 2005-08-19 11:04 |只看该作者

谁能给一个AS400 DB2 trigger的实例?

??谁来不帮帮我?

论坛徽章:
0
3 [报告]
发表于 2005-08-20 12:05 |只看该作者

谁能给一个AS400 DB2 trigger的实例?

http://bbs.chinaunix.net/forum/viewtopic.php?t=576488

论坛徽章:
0
4 [报告]
发表于 2005-08-21 22:53 |只看该作者

谁能给一个AS400 DB2 trigger的实例?

或者你看ibm的红皮书,很多的。

论坛徽章:
0
5 [报告]
发表于 2005-08-22 09:15 |只看该作者

谁能给一个AS400 DB2 trigger的实例?

多谢版主给的例子,已经搞定。
多谢各位。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP