SQL_1> create table mytest(id int );
成都創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)服務(wù)商,為中小企業(yè)提供網(wǎng)站制作、網(wǎng)站建設(shè)服務(wù),網(wǎng)站設(shè)計(jì),網(wǎng)站改版維護(hù)等一站式綜合服務(wù)型公司,專業(yè)打造企業(yè)形象網(wǎng)站,讓您在眾多競爭對手中脫穎而出成都創(chuàng)新互聯(lián)公司。
表已創(chuàng)建。
SQL_1>insert into mytest select 1 from dual;
已創(chuàng)建 1 行。
create or replace trigger tri_mytest_u before update on mytest for each row
begin
dbms_output.put_line('old_value: '||:OLD.id);
dbms_output.put_line('new_value: '||:NEW.id);
5 end;
6 /
觸發(fā)器已創(chuàng)建
SQL_1>show errors;
沒有錯誤。
SQL_1>update mytest set id=id+1;
old_value: 1
new_value: 2
已更新 1 行。
SQL> set serveroutput on size 20000
SQL> set sqlprompt SQL_1
在新窗口2執(zhí)行:
-------------------------------
SQL> set serveroutput on size 20000
SQL> set sqlprompt SQL_2
SQL_2>update mytest set id=id+1;
---------------------------------
SQL_1>commit;
提交完成。
窗口2執(zhí)行結(jié)果:
-------------------------
SQL_2>update mytest set id=id+1;
old_value: 1
new_value: 2
old_value: 2
new_value: 3
已更新 1 行。
SQL_2>select * from mytest;
ID
----------
3
結(jié)論:update的觸發(fā)器在更新數(shù)據(jù)時,如果發(fā)生等待則會重新啟動去讀已提交的事物信息.