Oracle密码过期the password has expired
Posted 纸上得来终觉浅,绝知此事要躬行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle密码过期the password has expired相关的知识,希望对你有一定的参考价值。
Oracle11g密码过期
连接Oracle,以root用户登陆,输入以下命令
select * from dba_profiles where profile=\'DEFAULT\' and resource_name=\'PASSWORD_LIFE_TIME\';
结果显示:
结果显示密码有效期是180天
输入命令:
alter profile default limit password_life_time unlimited; commit; select * from dba_profiles where profile=\'DEFAULT\' and resource_name=\'PASSWORD_LIFE_TIME\';
结果显示:
进行以上步骤之后需要改变密码,否则还会出现password has expired异常
改变密码的命令
alter user gzds identified by 123456;
如果账号被锁住,则需要解锁命令
alter user gzds identified by root account unlock;
以上是关于Oracle密码过期the password has expired的主要内容,如果未能解决你的问题,请参考以下文章
ora-28002 the password will expire解决办法
Oracle 11g 密码过期被锁报 ORA-28000 the account is locked
ORACLE错误:ORA-28001: the password has expired解决方法