ORA-01017 Invalid Username/Password when connecting to 11g database from 9i client(ORA-01017 从 9i 客户端连接到 11g 数据库时无效的用户名/密码)
问题描述
我正在尝试从装有 9i (v9.2.0.1) 客户端的 PC 连接到 11g (v11.2.0.1.0) 上的架构.它似乎可以很好地连接到某些模式,但不是这个模式 - 它每次都会返回 ORA-01017 Invalid Username/Password
错误.
I'm trying to connect to a schema on 11g (v11.2.0.1.0) from a PC with 9i (v9.2.0.1) client. It seems to connect fine to some schemas, but not this one - it comes back with a ORA-01017 Invalid Username/Password
error every time.
用户名和密码绝对正确 - 谁能想出为什么这不起作用的原因?
The username and password are DEFINITELY correct - can anyone think of a reason why this wouldn't work?
9i 和 11g 之间是否存在根本的不兼容?
Are there any fundamental incompatibilities between 9i and 11g?
推荐答案
用户名和密码绝对不正确.Oracle 11g 凭据区分大小写.
The user and password are DEFINITELY incorrect. Oracle 11g credentials are case sensitive.
尝试 ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;并修改密码.
Try ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE; and alter password.
http://oracle-base.com/articles/11g/case-sensitive-passwords-11gr1.php
这篇关于ORA-01017 从 9i 客户端连接到 11g 数据库时无效的用户名/密码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ORA-01017 从 9i 客户端连接到 11g 数据库时无效的用户名/密码


- 在SQL中,如何为每个组选择前2行 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01