日期:2014-05-16  浏览次数:20519 次

Oracle 11g 错误:ORA-28002: the password will expire within 7 days 解决方法

ERROR:ORA-28002: the password will expire within 7 days

错误是提示密码快过期了,有两个办法解决这个问题。

一. 修改已经报错用户的密码

已经被报告了密码快要过期的账户必须再改一次密码(需要DBA权限)

以system用户为例

sqlplus / as sysdba
alter user system identified by root;

再连接数据再也不会出现密码过期的事情了。

如果是其他用户的话,那么就使用其他用户名。

alter user scott identified by tiger;  
二. 将密码设为永不过期

1.查看用户的profile设置: