异步进行,不过最好是同个时间段进行,尽可能地保持数据一致。
操作系统为windows2000service pack2
谢谢楼上的大哥,您能阐述一下详细方法嘛?
我在这里拜谢了。
如果解决了,分数200敬上。

解决方案 »

  1.   

    why not build 3 temp table locally?:
    Select * from 表名...@
    where org_id=机构号1 into temp_table1;
    Select * from 表名...@
    where org_id=机构号2 into temp_table2;
    Select * from 表名...@
    where org_id=机构号3 into temp_table3;
    and then:
    Select * from temp_table1
    union Select * from temp_table2
    union Select * from temp_table3 and ,oracle has a module called "Replication",you can try it(i havn't touched it ,so seek the Oracle-help yourself please)
      

  2.   

    我想shshsh_0510的方法比较可行,你可以分别的将各地数据更新到临时表中
    再用对这些临时表的快照来处理你的程序呀。
    程序只需要添加一个模块去处理采集数据就可以了,这应该不是很困难实现吧
      

  3.   

    There are serveral way to reach your target,but i  think none can do it without a little change on your exsit code