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

Oracle密码过期the password has expired

时间:2018-01-22 11:09:54      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:账号   命令   ide   改变   comm   root   account   word   http   

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

标签:账号   命令   ide   改变   comm   root   account   word   http   

原文地址:https://www.cnblogs.com/mingforyou/p/8327573.html

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