注:本次测试在11G环境下,其他版本均适合
1、报错
SQL> conn scott/tiger
ERROR:
ORA-28002: the password will expire within 7 days
2、处理方法
查看用户的 profile(一般是 default) SQL> select username,profile from dba_users; 查看 default 概要文件设置的密码有效期(默认 180 天) SQL> select * from dba_profiles where resource_name ='PASSWORD_LIFE_TIME' and profile='DEFAULT'; 将密码有效期设置为无限制 SQL> alter profile default limit password_life_time unlimited; SQL> alter user scott identified by tiger; SQL> conn scott/tiger Connected.``` 此时连接发现正常连接 本文如有错误或不完善的地方请大家多多指正,留言或 QQ 皆可,您的批评指正是我写作的最大动力!