Chinaunix首页 | 论坛 | 博客
  • 博客访问: 279903
  • 博文数量: 38
  • 博客积分: 706
  • 博客等级: 上士
  • 技术积分: 390
  • 用 户 组: 普通用户
  • 注册时间: 2012-06-05 09:09
文章分类

全部博文(38)

文章存档

2013年(23)

2012年(15)

我的朋友

分类: Oracle

2013-05-15 16:39:44

问题描述:
         客户端连提示:ORA-28001:the password has expired。


处理经过:
        sqlplus / as dba
        sql>select username,profile from dba_users;  查询过期用户使用的profile,一般应该是default。
        sql>select * from dba_profiles where profile='default';  查询defalut的设置,resource_name字段中 password_life_time是超时时间。
        sql>alter profile default limit password_life_time unlimited;
        sql>alter user identified by account unlock;


    操作后,用户user解锁,不会再过期。
阅读(4401) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~