ORA-28001 表示密码已过期。当 Oracle 用户的密码过期并尝试登录数据库时,将会收到此错误。
当 Oracle 用户的密码过期并尝试登录数据库时,将会收到此错误。
具体解决方法如下:
select username from dba_users where account_status = 'EXPIRED';
alter user <username> identified by <password>;
alter user <username> account unlock;
注意事项:
<username>
是您要重置密码的 Oracle 用户名。<password>
是您要为用户设置的新密码。grant create session to <username>;
。