create
public
database
link
link2
connect
to
user1
identified
by
password
using
'remote'
前提是在要连接的数据库上有user1这个用户,并且在本地建立local
naming
dblink建立后,就可以在本地数据库访问remote库了,例如
select
*
from
link2.tablename
假设原来的表是test1a
b
ctest2的字段为
d
e
f
其中a和d对应
b和e对应
c和f对应先把要写到的表清掉,执行如下语句:truncate
table
test2然后把test1表的数据导入到test2表中,执行如下语句:insert
into
test2select
*
from
test1
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)