在測試的時候須要數據,此時從生產環境把數據導入到測試環境測試
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%' ;code