启用密码管理之前创建的用户连接Oracle报ORA-28002处理一则处理方法其实很简单、只要:alter user <username> identified by <same password>; 这个操作后,恢复正常了下面作个简单测试:SQL> conn hr/hr
ERROR:
ORA-28002: the password will expire within 2 days
Connected.
SQL> conn / as sysdba
Connected.
SQL> alter user hr identified by hr;User altered.SQL> conn hr/hr
Connected.
SQL> conn scott/tiger
ERROR:
ORA-28002: the password will expire within 2 days
Connected.
SQL> conn / as sysdba
Connected.
SQL> alter user scott identified by tiger;User altered.SQL> conn scott/tiger
Connected.更多Oracle相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12MySQL数据类型详述Linux HugePages及MySQL 大页配置相关资讯 ORA-28002
- Oracle 11g数据库密码过期ORA- (07/18/2015 09:46:03)
- ORA-28002/ORA-28000 解决11g 密码 (01/07/2014 21:35:49)
- Oracle 提示修改密码 ORA-28002和 (11/25/2013 10:55:37)
| - ORA-28002 密码过期警告 (03/29/2014 14:34:51)
- ORA-28002密码将在7天后过期 (12/26/2013 21:34:03)
- 密码过期 ORA-28002 问题处理 (06/12/2013 10:43:19)
|
本文评论 查看全部评论 (0)