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

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

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

一. 改动已经报错用户的password

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

以system用户为例

Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法
sqlplus / as sysdba
alter user system identified by root;
Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法

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

假设是其它用户的话,那么就使用其它username。

Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法
alter user scott identified by tiger;  
Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法
二. 将password设为永只是期

1.查看用户的profile设置:

Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法
SELECT username,profile FROM dba_users;  
Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法

一般用户的profile设置都为DEFAULT。

2.查看系统profiles中PASSWORD_LIFE_TIME设置。

Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法
SELECT * FROM dba_profiles s WHERE s.profile=DEFAULT AND resource_name=PASSWORD_LIFE_TIME;
Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法

PROFILE                        RESOURCE_NAME                    RESOURCE                      LIMIT

------------------------------ -------------------------------- ------------------------------------------------
DEFAULT                        PASSWORD_LIFE_TIME               PASSWORD                180dys

==============================================================

3.改动DBA_PROFILES中PASSWORD_LIFE_TIM的设置,改为ULIMITED。

Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;  
Oracle 11g 错误:ORA-28002: the password will expire within 7 days 
解决方法

改动后设置马上生效,不须要重新启动数据库,此时password永远不会过期。


Oracle 11g 错误:ORA-28002: the password will expire within 7 days 解决方法,布布扣,bubuko.com

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

上一篇:Scala_控制结构


下一篇:[转]Oracle DB 通过SQL 优化管理性能