问题描述:
客户端连提示: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解锁,不会再过期。
阅读(824) | 评论(0) | 转发(0) |