dblink對比本地和遠端表的記錄數量是否一致

perfychi發表於2013-12-18
declare
v_count1 int :=-1;
v_count2 int :=-1;
j int :=0;
diff int :=0;
begin
for i in (select tname from tab) loop
  j:=j+1;
   
  execute immediate 'select count(*) from '   || i.tname  into v_count1;
  execute immediate 'select count(*) from '   || i.tname || '@a2_link01' into v_count2;
 diff := v_count1 - v_count2;
  dbms_output.put_line(j || ' : ' || i.tname || ' * ' || v_count1 || ' * ' || v_count2 ||  ' * ' || diff);
end loop;
end ;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27042095/viewspace-1063561/,如需轉載,請註明出處,否則將追究法律責任。

相關文章