[转]ORA-28001: the password has expired解决方法

本文转自:http://blog.csdn.net/btt2013/article/details/54862420

参考文献:http://www.zhetao.com/content259

后台报ORA-28001: the password has expired 密码超时
 
登录数据库服务器,使用 sqlplus / as sysdba命令,进入oracle数据库
使用:select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';
语句查看密码的有效天数为180天,也就是三个月
使用:alter profile default limit password_life_time unlimited; 命令改为永久生效
 
 
验证
 
进行以上步骤之后需要改变密码,否则还会出现password has expired异常
修改用户密码:
 
 
原文地址:https://www.cnblogs.com/freeliver54/p/8297990.html