基本上,我正在尝试有选择地将表从一个数据库复制到另一个数据库.我有两个不同的[Oracle]数据库(例如,在不同的主机上运行)具有相同的模式.我对在DB1中加载表A的有效方法感兴趣,结果是在DB2中运行表A上的select.我正在使用JDBC,如果那是相关的.
使用数据库链接,并使用create table作为select.
create database link other_db connect to remote_user identified by remote_passwd using remote_tnsname; create table a as select * from a@other_db;