收到邮件后,您的密码将在7天内过期,我将默认配置文件的密码更改日期到UNLIMITED。但是一些用户的帐户状态仍然存在于EXPIRE(GRACE)中。
任何方式将Oracle用户帐户状态从EXPIRE(GRACE)更改为OPEN而不重置密码?
不,您不能将帐户状态从EXPIRE(GRACE)更改为OPEN,而无需重置密码。
原文链接:/oracle/205767.htmlIf 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]';