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

2025-10-30 01:03:17

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解决办法

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢