看一下Oracle关于复制的帮助好了。文档号:a96568.pdf (Replication Management API Reference)很容易用的。

解决方案 »

  1.   

    写一个触发器是可以的。
    create trigger xxxx after insert or delete or update of xxcolumn 
    on xxxtable for each row 
      

  2.   

    to 天下有雪:
       这个好像没有说明是同时更新哪个表啊?我要更新的是[email protected]表呢?
      

  3.   

    接天下有雪
    if inserting then
      ........
    elsif deleting then
      ........
    elsif updating then
      ........
    end if ;
      

  4.   

    谢谢啦!
    现在我insetrt 的写了,但是updatting和delete的没有写,有人能帮帮我吗?
    难道要updata里面写所有的字段?