Oracle错误 ORA-28002: the password will expire within 7 days 的解决办法

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

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

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


你可能感兴趣的:(Oracle错误 ORA-28002: the password will expire within 7 days 的解决办法)