久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

利用oracle快照dblink解決數(shù)據(jù)庫(kù)表同步問(wèn)題 - - JavaEye技術(shù)網(wǎng)站

 笑晨風(fēng) 2010-11-28

利用oracle快照dblink解決數(shù)據(jù)庫(kù)表同步問(wèn)題

本實(shí)例已完全通過(guò)測(cè)試,單向,雙向同步都可使用.

--名詞說(shuō)明:源——被同步的數(shù)據(jù)庫(kù)
            目的——要同步到的數(shù)據(jù)庫(kù)

前6步必須執(zhí)行,第6以后是一些輔助信息.

--1,、在目的數(shù)據(jù)庫(kù)上,創(chuàng)建dblink
drop public database link dblink_orc92_182;
Create public DATABASE LINK dblink_orc92_182 CONNECT TO bst114 IDENTIFIED BY password USING 'orc92_192.168.254.111';
--dblink_orc92_182 是dblink_name
--bst114 是 username
--password 是 password
--'orc92_192.168.254.111' 是遠(yuǎn)程數(shù)據(jù)庫(kù)名


--2,、在源和目的數(shù)據(jù)庫(kù)上創(chuàng)建要同步的表(最好有主鍵約束,快照才可以快速刷新)
drop table test_user;
create table test_user(id number(10) primary key,name varchar2(12),age number(3));

--3,、在目的數(shù)據(jù)庫(kù)上,測(cè)試dblink
select * from test_user@dblink_orc92_182;    //查詢(xún)的是源數(shù)據(jù)庫(kù)的表
select * from test_user;

--4,、在源數(shù)據(jù)庫(kù)上,,創(chuàng)建要同步表的快照日志
Create snapshot log on test_user;

--5、創(chuàng)建快照,,在目的數(shù)據(jù)庫(kù)上創(chuàng)建快照
Create snapshot sn_test_user as select * from test_user@dblink_orc92_182;

--6,、設(shè)置快照刷新時(shí)間(只能選擇一種刷新方式,推薦使用快速刷新,這樣才可以用觸發(fā)器雙向同步)
快速刷新
Alter snapshot sn_test_user refresh fast Start with sysdate next sysdate with primary key;
--oracle馬上自動(dòng)快速刷新,以后不停的刷新,只能在測(cè)試時(shí)使用.真實(shí)項(xiàng)目要正確權(quán)衡刷新時(shí)間.

完全刷新
Alter snapshot sn_test_user refresh complete Start with sysdate+30/24*60*60 next sysdate+30/24*60*60;
--oracle自動(dòng)在30秒后進(jìn)行第一次完全刷新,,以后每隔30秒完全刷新一次

--7,、手動(dòng)刷新快照,在沒(méi)有自動(dòng)刷新的情況下,可以手動(dòng)刷新快照.
手動(dòng)刷新方式1
begin
dbms_refresh.refresh('sn_test_user');
end;

手動(dòng)刷新方式2
EXEC DBMS_SNAPSHOT.REFRESH('sn_test_user','F'); //第一個(gè)參數(shù)是快照名,第二個(gè)參數(shù) F 是快速刷新 C 是完全刷新.

--8.修改會(huì)話時(shí)間格式
ALTER SESSION SET NLS_DATE_FORMAT = 'YYYY-MM-DD HH24:MI:SS';

--9.查看快照最后一次刷新時(shí)間
SELECT NAME,LAST_REFRESH FROM ALL_SNAPSHOT_REFRESH_TIMES;

--10.查看快照下次執(zhí)行時(shí)間
select last_date,next_date,what from user_jobs order by next_date;

--11.打印調(diào)試信息
dbms_output.put_line('use '||'plsql');

--12.如果你只想單向同步,那么在目的數(shù)據(jù)庫(kù)創(chuàng)建以下觸發(fā)器(當(dāng)源數(shù)據(jù)庫(kù)表改變時(shí),目的數(shù)據(jù)庫(kù)表跟著改變,但目的數(shù)據(jù)庫(kù)表改變時(shí),源數(shù)據(jù)庫(kù)表不改變).
create or replace trigger TRI_test_user_AFR
after insert or update or delete on sn_test_user
for each row
begin
if deleting then
      delete from test_user where id=:old.id;
end if;
if inserting then
      insert into test_user(id,name)
      values(:new.id,:new.name);
end if;
if updating then
     update test_user set name=:new.name where id=:old.id;
end if;
end TRI_test_user_AFR;

--13.如果你想雙向同步,請(qǐng)?jiān)谠磾?shù)據(jù)庫(kù)中執(zhí)行前6步,并在雙方都創(chuàng)建以下觸發(fā)器(當(dāng)源數(shù)據(jù)庫(kù)表改變時(shí),目的數(shù)據(jù)庫(kù)表跟著改變,目的數(shù)據(jù)庫(kù)表改變時(shí),源數(shù)據(jù)庫(kù)表也改變)
CREATE OR REPLACE TRIGGER BST114.TRI_TEST_USER_AFR
AFTER DELETE OR INSERT OR UPDATE
ON BST114.SN_TEST_USER
REFERENCING NEW AS NEW OLD AS OLD
FOR EACH ROW
declare
    tmp_id number(10):=-1;
begin

dbms_output.put_line('begin');
if inserting then
      --select id into tmp_id from test_user where id=:new.id;   
      for p in(select id from test_user where id=:new.id)
      loop
        tmp_id:=p.id;
      end loop;
     
      dbms_output.put_line(tmp_id||'===------------');
      if (tmp_id=-1) then
          insert into test_user(id,name,age)
          values(:new.id,:new.name,:new.age);
      end if;
end if;

if updating then
     dbms_output.put_line('updated');
     for p in(select name,age from test_user where id=:old.id)
     loop
         if (p.name!=:new.name) or (p.age!=:new.age) then
              update test_user set name=:new.name,age=:new.age where id=:old.id;
         end if;
     end loop;
end if;

if deleting then
      dbms_output.put_line('deleted');
      delete from test_user where id=:old.id;
end if;
dbms_output.put_line('end');
end TRI_test_user_AFR;
--為防止雙向同步觸發(fā)器死循環(huán),所以要在觸發(fā)器中增加一些判斷,阻止死循環(huán).

--以上同步原理
1.首先創(chuàng)建一個(gè)dblink,可以訪問(wèn)遠(yuǎn)程數(shù)據(jù)庫(kù)
2.在本地創(chuàng)建一個(gè)快照,映射遠(yuǎn)程數(shù)據(jù)表,當(dāng)遠(yuǎn)程數(shù)據(jù)表有變化時(shí),會(huì)反應(yīng)到快照中.
3.由于快照類(lèi)似于視圖表,所以在本地為快照創(chuàng)建一個(gè)觸發(fā)器,當(dāng)快照有變化時(shí),會(huì)觸發(fā)相應(yīng)事件.
4.在觸發(fā)器中寫(xiě)同步數(shù)據(jù)的代碼.

--附:快照刷新時(shí)間參數(shù)說(shuō)明
一天的秒數(shù)=24小時(shí)*60分鐘*60鈔
所以要想在30秒后刷新,參數(shù)應(yīng)該這樣寫(xiě) sysdate+30/(24*60*60)
1分鐘==sysdate+60/(24*60*60)

一天的分鐘數(shù)=24小時(shí)*60分鐘
一分鐘也可以這樣寫(xiě) sysdate+1/(24*60)
30分鐘==sysdate+30/(24*60)
60分鐘==sysdate+60/(24*60)

以此類(lèi)推
1小時(shí)==sysdate+1/24==sysdate+60/(24*60)
1天==sysdate+1
一個(gè)月==sysdate+30

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶(hù)發(fā)布,,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多