備份觸發器:ADDC3

CREATE OR REPLACE TRIGGER "XMV502"."ADDC3"
  before insert on bd_cubasdoc
  for each row
declare
  -- local variables here
  i number(1);
begin
 select count(1)into i from bd_cubasdoc
where custname=:new.custname 
     or (engname=:new.engname and length(:new.engname)>3) --營業執照或身份照
     or (taxpayerid=:new.taxpayerid and length(:new.taxpayerid)>3);--納稅人登記號
  if i>0 or
    regexp_like(:new.custname,'[[:space:]]') 
     then
    begin
      raise_application_error(-20001,'客商已存在或有空格,請在已有客商修改增行!');
      end;
  
      end if;
   
end;

XMV502app

相關文章
相關標籤/搜索