博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
dblink的使用
阅读量:5961 次
发布时间:2019-06-19

本文共 1945 字,大约阅读时间需要 6 分钟。

1.创建全局link(使用本地一个用户访问其它用户的表)

语法: 

create public database link 链接名  CONNECT TO 本地用户名 IDENTIFIED BY 密码 USING '本地数据库实例名';

SQL> create user upch identified by System13579;          
User created.
SQL> grant dba,resource,connect to upch;
Grant succeeded.

SQL> conn upch/System13579
Connected.

SQL> create table t (a number);
Table created.

SQL> insert into t values(1);
1 row created.
SQL> insert into t values(2);
1 row created.
SQL> select * from t;
     A
----------
     1
     2
SQL> conn / as sysdba
Connected.

SQL> create public database link tong connect to upch identified by System13579 using 'orcl';

SQL> select * from t@tong;    --访问upch用户下的t表
     A
----------
     1
     2
SQL> 

2.远程创建link

语法:

create /* public */ database link tong connect to 远程用户名 identified by 密码using '(DESCRIPTION =(ADDRESS_LIST =(ADDRESS =(PROTOCOL = TCP)(HOST = 远程IP地址)(PORT = 1521)))(CONNECT_DATA =(SERVICE_NAME = 远程SID值)))';  

[oracle@localhost dbs]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.3.0 Production on Wed Jun 28 14:47:53 2017
Copyright (c) 1982, 2011, Oracle.  All rights reserved.

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> create database link tong1 connect to upch identified by System13579 using '(DESCRIPTION =(ADDRESS_LIST =(ADDRESS =(PROTOCOL = TCP)(HOST = 172.16.8.161)(PORT = 1521)))(CONNECT_DATA =(SERVICE_NAME = orcl)))';
Database link created.
SQL> select * from t@tong1;
     A
----------
     1
     2
SQL> col owner for a10

SQL> col db_link for a10

SQL> col host for a150

SQL> select * from dba_db_links;        --查看数据库有多少dblink
OWNER  DB_LINK  USERNAME     HOST       CREATED
SYS    TONG1    UPCH      (DESCRIPTION =(ADDRESS_LIST =(ADDRESS =(PROTOCOL = TCP)(HOST = 172.16.8.161)(PORT = 1521)))(CONNECT_DATA =(SERVICE_NAME = orcl)))            28-JUN-17
SQL> drop database link tong1;            --删除dblink
Database link dropped.
SQL> 

本文转自 z597011036 51CTO博客,原文链接:http://blog.51cto.com/tongcheng/1942682,如需转载请自行联系原作者
你可能感兴趣的文章
用XSLT和XML改进Struts
查看>>
Beta冲刺——day6
查看>>
Comet OJ - Contest #3 题解
查看>>
[网络流24题-9]试题库问题
查看>>
jquery选择器详解
查看>>
C# 保留2位小数
查看>>
使用xshell远程连接Linux
查看>>
杭电ACM1007
查看>>
faster-RCNN台标检测
查看>>
Unix环境高级编程 centos中配置apue编译环境
查看>>
运算符
查看>>
数据结构之各排序算法
查看>>
网页分帧操作<frameset>,<iframe>标签
查看>>
Vue生产环境部署
查看>>
酒店之王
查看>>
html5判断用户摇晃了手机(转)
查看>>
VS下Qt4.8.4安装
查看>>
Linux df命令
查看>>
redhat6.5 配置使用centos的yum源
查看>>
取得内表的数据数
查看>>