最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

OracleORA-28002:thepasswordwillexpirewithin10days

来源:动视网 责编:小采 时间:2020-11-09 09:41:44
文档

OracleORA-28002:thepasswordwillexpirewithin10days

OracleORA-28002:thepasswordwillexpirewithin10days:Oracle ORA-28002: the password will expire within 10 days解决方法如下 1、查询此用户的perfile文件 select username,profile from dba_users where username=SCOTT; 2、根据文件名查询值 select * from dba_
推荐度:
导读OracleORA-28002:thepasswordwillexpirewithin10days:Oracle ORA-28002: the password will expire within 10 days解决方法如下 1、查询此用户的perfile文件 select username,profile from dba_users where username=SCOTT; 2、根据文件名查询值 select * from dba_


Oracle ORA-28002: the password will expire within 10 days解决方法如下 1、查询此用户的perfile文件 select username,profile from dba_users where username=SCOTT; 2、根据文件名查询值 select * from dba_profiles where profile=DEFAULT; - 3、修改密

Oracle ORA-28002: the password will expire within 10 days解决方法如下

1、查询此用户的perfile文件

select username,profile from dba_users where username='SCOTT';

2、根据文件名查询值

select * from dba_profiles where profile='DEFAULT';
-


3、修改密码过期时间password_life_time 为unlimited

alter profile default limit password_life_time unlimited;

4、查询密码复杂度验证 PASSWORD_VERIFY_FUNCTION VERIFY_FUNCTION

alter profile default limit PASSWORD_VERIFY_FUNCTION NULL;(不采用复杂度验证)

5、修改密码为原来密码

alter user scott identified by tiger;

上面修改默认的值可能会影响其他,建议创建一个perfile文件 绑定到用户

文档

OracleORA-28002:thepasswordwillexpirewithin10days

OracleORA-28002:thepasswordwillexpirewithin10days:Oracle ORA-28002: the password will expire within 10 days解决方法如下 1、查询此用户的perfile文件 select username,profile from dba_users where username=SCOTT; 2、根据文件名查询值 select * from dba_
推荐度:
标签: password the oracle
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top