首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

oracle ORA-28002: the password will expire within 十 days

2012-09-23 
oracleORA-28002: the password will expire within 10 days解决方法如下1、查询此用户的perfile文件select

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  为unlimitedalter profile default limit password_life_time unlimited;4、查询密码复杂度验证 PASSWORD_VERIFY_FUNCTION  VERIFY_FUNCTIONalter profile default limit PASSWORD_VERIFY_FUNCTION  NULL;(不采用复杂度验证)5、修改密码为原来密码alter user scott identified by tiger;


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

 

热点排行