热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

ORA-28002:thepasswordwillexpirewithin10days的解决

ORA-28002:thepasswordwillexpirewithin10days的解决[sql]解决方法如下[sql]1、查询此用户的perfile文件selectusername,profilefromdba_userswhereusername'SCOTT';www....

ORA-28002:the password will expire within 10 days的解决
 
[sql]
  
解决方法如下
 
[sql]
1、查询此用户的perfile文件  
  
select username,profile from dba_users where username='SCOTT';  
    www.2cto.com  
2、根据文件名查询值  
  
select * from dba_profiles where profile='DEFAULT';  
  
3、修改密码过期时间password_life_time  为unlimited  
  
alter profile default limit password_life_time unlimited;  
    www.2cto.com  
4、查询密码复杂度验证 PASSWORD_VERIFY_FUNCTION  VERIFY_FUNCTION  
  
alter profile default limit PASSWORD_VERIFY_FUNCTION  NULL;(不采用复杂度验证)  
  
5、修改密码为原来密码  
  
alter user scott identified by tiger;  
 
上面修改默认的值可能会影响其他,建议创建一个perfile文件 绑定到用户
 

推荐阅读
author-avatar
手机用户2502903937
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有