Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1941932
  • 博文数量: 424
  • 博客积分: 1291
  • 博客等级: 中尉
  • 技术积分: 2682
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-13 01:34
个人简介

linux oracle 网络安全 编程

文章分类

全部博文(424)

文章存档

2016年(22)

2015年(53)

2014年(57)

2013年(242)

2012年(50)

分类: Oracle

2013-05-24 14:46:54

原文地址:Oracle用户密码过期 作者:wchming1987

问题描述:
         客户端连提示: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解锁,不会再过期。
阅读(784) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~