码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2014-06-06 10:34:50      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

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

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

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

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

以system用户为例

bubuko.com,布布扣
sqlplus / as sysdba
alter user system identified by root;
bubuko.com,布布扣

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

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

bubuko.com,布布扣
alter user scott identified by tiger;  
bubuko.com,布布扣
二. 将password设为永只是期

1.查看用户的profile设置:

bubuko.com,布布扣
SELECT username,profile FROM dba_users;  
bubuko.com,布布扣

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

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

bubuko.com,布布扣
SELECT * FROM dba_profiles s WHERE s.profile=DEFAULT AND resource_name=PASSWORD_LIFE_TIME;
bubuko.com,布布扣

PROFILE                        RESOURCE_NAME                    RESOURCE                      LIMIT

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

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

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

bubuko.com,布布扣
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;  
bubuko.com,布布扣

改动后设置马上生效,不须要重新启动数据库,此时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 解决方法

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/zfyouxi/p/3767313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!