1. 程式人生 > >ORACLE觸發器和new、old特殊變數

ORACLE觸發器和new、old特殊變數

:new --為一個引用最新的列值;
:old --為一個引用以前的列值; 這兩個變數只有在使用了關鍵字 "FOR EACH ROW"時才存在.且update語句兩個都有,而insert只有:new ,delect 只有:old;

系統中的觸發器例項:

create or replace trigger JBPM.TIB_DEPLOYBYMOVEPAPER before //before表示在操作完成前觸發,                                                                                                             after表示在完成後觸發

insert //發生插入資料操作觸發
on JBPM.DEPLOYBYMOVEPAPER for each row //指定觸發器每行觸發一次
declare
    integrity_error exception; //使用者自定義錯誤
    errno            integer;
    errmsg           char(200);
    dummy            integer;
    found            boolean;
    row_count number;
    max_num deploybymovepaper.num%type; //根據表的欄位定義變數型別
    zero_today deploybymovepaper.num%type;

begin
-- Column "ID" uses sequence SEQUENCE_38
case
when inserting then //SQL語句只能使用:new特殊變數
select SEQUENCE_38.NEXTVAL INTO :new.ID from dual;//主鍵自增
zero_today :='0391'||to_char(sysdate,'yymmdd')||lpad(to_char(0),4,'0');//lpad函式定義字串長度                                                                                                               為4不足時用0補全
    select count(*) into row_count from deploybymovepaper;
    if row_count = 0 then
        max_num:=zero_today;//:=給變數賦值
    else
      select max(num) into max_num from deploybymovepaper;
    end if;
    if max_num<zero_today then
        max_num:=zero_today;
    end if;
    if :new.num is null then
    :new.num:=lpad(to_char(to_number(max_num)+1),14,'0'); //遞增編號,有14為數字組成
    end if;
when updating('num') then

//:new、:old都可以用
if :new.num!=:old.num then
      :new.num:=:old.num;
end if;
end case;

-- Errors handling
exception
    when integrity_error then
       raise_application_error(errno, errmsg); //丟擲異常語句
end;
/

檢視某個表的觸發器

select   *   from   all_triggers
where   table_name   =upper( 'tbname ')