在测试的时候需要数据,此时从生产环境把数据导入到测试环境
1.把要导入的数据准备一下,防止报主键冲突 delete from sarealpayfee a where a.startdate > date '2016-05-01' and a.comcode like '3798%'; 2.使用查询插入的方法导入数据,在要查询的表后面加上@DBLINK_SC 并且可以加入条件。 insert into sarealpayfee select * from sarealpayfee@DBLINK_SC a where a.startdate > date '2016-05-01' and a.comcode like '3798%' ;
原文链接:https://www.f2er.com/oracle/213390.html