首页 > 数据库 > mysql教程 > 低版本使用dblink连接11G版本时报错ora-02063/ora-01017

低版本使用dblink连接11G版本时报错ora-02063/ora-01017

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
发布: 2016-06-07 16:11:03
原创
1714 人浏览过

一回家,某运营商电话至,创建dblink报错ora-02063/ora-01017 关于这个BUG,遇到不是一次了,ORACLE对于该BUG 描述如下 Bug 6738104: ORA-01017 ORA-02063 WHILE CONNECTING FROM10G TO 11G VIA PUBLIC DBLINK Cause The following Bug 6738104 was logged f

一回家,某运营商电话至,创建dblink报错ora-02063/ora-01017

关于这个BUG,遇到不是一次了,ORACLE对于该BUG 描述如下

Bug 6738104: ORA-01017 ORA-02063 WHILE CONNECTING FROM10G TO 11G VIA PUBLIC DBLINK

Cause
The following Bug 6738104 was logged for this issue which was closed as not abug saying the cause being introduction of password case sensitivity feature in11g
When one creates a database link connection, a user name and password for theconnection needs to be defined. When the database link is created, the passwordis case sensitive. Before a user can connect from a pre-release 11g database toa 11g release database and as the password case sensitivity is enabled bydefault, you must re-create the password for this database link using alluppercase letters.
The reason you need to re-create the password using all uppercase letters is sothat it will match how Oracle Database stores database link passwords. OracleDatabase always stores this type of password in uppercase letters, even if thepassword had originally been created using lower or mixed case letters. If casesensitivity is disabled, the user can enter the password using the case thepassword was created in.

当低版本通过dblink连接11G库时,默认会将密码改为大写。

solution就很简单啦,重新创建dblink,密码使用双引号+小写即可

例:create database link db_test
2 connect to wxboss
3 identified by "wxboss"
4 using '(DESCRIPTION =
5 (ADDRESS_LIST =
6 (ADDRESS = (PROTOCOL =TCP)(HOST = 192.168.99.100)(PORT = 1521))
7 )
8 (CONNECT_DATA =
9 (SERVER = DEDICATED)
10 (SID = wxboss)
11 )
12 )';

特此记录。

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
mysql版本和php版本升级问题
来自于 1970-01-01 08:00:00
0
0
0
mysql的分支版本和衍生版本
来自于 1970-01-01 08:00:00
0
0
0
linux专用版本如何切换成7.0以上的版本?
来自于 1970-01-01 08:00:00
0
0
0
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板