博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle下建立dblink时的权限问题
阅读量:5843 次
发布时间:2019-06-18

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

如果用普通用户,如果没授权,是无法建立dblink的:

[oracle@oracle000 ~]$ sqlplus gao/gao[uniread] Loaded history (10 lines)SQL*Plus: Release 11.2.0.3.0 Production on 木 10月 17 09:30:27 2013Copyright (c) 1982, 2011, Oracle.  All rights reserved.Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit ProductionWith the Partitioning, OLAP, Data Mining and Real Application Testing optionsに接続されました。SQL> create database link gaolink connect to gao identified by gao using 'mydb'; create database link gaolink connect to gao identified by gao using 'mydb'; create database link gaolink connect to gao identified by gao using 'mydb'                     *行1でエラーが発生しました。:ORA-01031: 権限が不足しています。SQL>

 

如果以sysdba身份则可以建立dblink:

===============================================================================[oracle@oracle000 ‾]$ sqlplus / as sysdba[uniread] Loaded history (13 lines)SQL*Plus: Release 11.2.0.3.0 Production on 木 10月 17 14:17:58 2013Copyright (c) 1982, 2011, Oracle.  All rights reserved.Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit ProductionWith the Partitioning, OLAP, Data Mining and Real Application Testing optionsに接続されました。SQL> create database link gaolink connect to gao identified by gao using 'mydb'; データベース・リンクが作成されました。SQL>

转载地址:http://zyhcx.baihongyu.com/

你可能感兴趣的文章
linux学习入门之Linux系统目录结构
查看>>
远程服务器不能复制粘贴解决方法
查看>>
UVALive2953 POJ1775 ZOJ2358 Sum of Factorials【打表+穷尽搜索】
查看>>
码农们:完美主义也是一种错
查看>>
正则表达式30分钟入门教程
查看>>
HTML5 的输入类型(input type)
查看>>
[BZOJ 3531][Sdoi2014]旅行(树链剖分+线段树)
查看>>
把UltraEdit改造成VC
查看>>
(个人)Linux基本指令收集
查看>>
switch与ifelse的效率问题
查看>>
【开源】C#信息抽取系统【招募C#队友】
查看>>
angular 表单操作
查看>>
站内消息弹出层简单实现
查看>>
console.log、toString方法与js判断变量类型
查看>>
HDU - Pseudoforest
查看>>
Nexus杂
查看>>
Sharding-jdbc视频:当Sharding-jdbc遇到Spring Boot
查看>>
android提权
查看>>
Android --- GreenDao的实现(ORM框架)
查看>>
oracle函数,查询,事务
查看>>