将Oracle用户帐户状态从EXPIRE(GRACE)更改为OPEN

前端之家收集整理的这篇文章主要介绍了将Oracle用户帐户状态从EXPIRE(GRACE)更改为OPEN前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
收到邮件后,您的密码将在7天内过期,我将默认配置文件的密码更改日期到UNLIMITED。但是一些用户的帐户状态仍然存在于EXPIRE(GRACE)中。

任何方式将Oracle用户帐户状态从EXPIRE(GRACE)更改为OPEN而不重置密码?

不,您不能将帐户状态从EXPIRE(GRACE)更改为OPEN,而无需重置密码。

documentation说:

If you cause a database user’s password to expire with PASSWORD
EXPIRE,then the user (or the DBA) must change the password before
attempting to log into the database following the expiration.

但是,您可以通过将用户密码重置为相同的值将状态更改为OPEN。

根据您的版本和设置,其中一个查询可能会得到您的密码哈希:

select spare4 from sys.user$ where name='[user name]';
select password from dba_users where username = '[user name]';

然后使用它来重置它:

alter user [user name] identified by values '[result from above query]';
原文链接:/oracle/205767.html

猜你在找的Oracle相关文章