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

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

后台报ORA-28001: the password has expired 密码超时
ORA-28001: the password has expired解决方法_第1张图片
登录数据库服务器,使用 sqlplus / as sysdba命令,进入oracle数据库
使用:select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';
语句查看密码的有效天数为180天,也就是三个月
ORA-28001: the password has expired解决方法_第2张图片
使用:alter profile default limit password_life_time unlimited; 命令改为永久生效

验证
ORA-28001: the password has expired解决方法_第3张图片
进行以上步骤之后需要改变密码,否则还会出现password has expired异常
修改用户密码:
ORA-28001: the password has expired解决方法_第4张图片


你可能感兴趣的:(Oracle学习)