ora-28002 the password will expire解决办法

Oracle11g R2数据库提示ORA-28002: the password will expire within 5 days,是说密码过期,将Oracle密码设置成永不过期就可以了,不过并不推荐这样做,最好是将日期密码有效期设置长一些。

ORA-28002: the password will expire解决办法
 

工具/原料

  • Oracle11g R2
  • sqlplus

方法/步骤

  1.  

    SQLDeveloper连接数据库提示

    ORA-28002: the password will expire within 5 days

    ORA-28002: the password will expire解决办法
  2.  

    登录到sqlplus

    sqlplus / as sysdba

    ORA-28002: the password will expire解决办法
  3.  

    查看密码有效期时长

    SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME';

    ORA-28002: the password will expire解决办法
  4.  

    将密码设置成永不过期

    SQL> ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

    ORA-28002: the password will expire解决办法
  5.  

    修改用户密码

    SQL> alter user joffice identified by joffice;

    ORA-28002: the password will expire解决办法
  6.  

    修改完用户密码之后再次登录就会发现这个提示已经不在了。不过小编再次提醒,这只是一个解决办法,生成数据库最好还是定期修改密码,安全至上啊。

    ORA-28002: the password will expire解决办法
原文地址:https://www.cnblogs.com/lj821022/p/5191823.html