1、建数据链路
2、建同义词
3、建触发器

解决方案 »

  1.   

    高手,能说的具体点吗?
    因为我不是学数据库的,现在是开发项目时遇到这个困难了,所以还想讲的更明了一些
      

  2.   

    1. 建立数据链路  建在USER9下
       create database link user8 connect to user8 identified by user8 using '数据库名'
    2. 建同义词     建立在USER8下
       create public synonym table8 for user8.table8
    3. 把 user8 中的 table8 导入 user9 中的 table9
       insert into table9
       select * from table8@user8;