コンテンツ
ORA-28000 発生
SQL> conn scott/tiger
ERROR:
ORA-28000: the account is locked
Warning: You are no longer connected to ORACLE.
対処
ALTER USER <ユーザー名> IDENTIFIED BY <パスワード> ACCOUNT UNLOCK;
実行例
SQL> conn / as sysdba
Connected.
SQL> alter user scott identified by tiger account unlock;
User altered.