ORA-28002: the password will expire within 7 days oracle密码过期

$ sqlplus / as sysdba
...
SQL> sqlplus <用户名>/<密码>
...
ERROR:
ORA-28002: the password will expire within 7 days
...

此 Oracle 错误的意思是用户密码将在7天后过期,简单的解决办法是重新设置一下用户的原密码,如下:

sql> alter user <用户名> identified by <原来的密码>;

你可能感兴趣的:(ORA-28002: the password will expire within 7 days oracle密码过期)