본문 바로가기

oracle

ORA-28000: the account is locked

728x90

문제발생


Enter user-name: username

Enter password: 

ERROR:

ORA-01017: invalid username/password; logon denied


password 자꾸 틀리면 계정이 잠긴다.


Enter user-name: username

Enter password: 

ERROR:

ORA-28000: the account is locked



해결방법


hostname:/oracle/app/oracle/product/9.2.0]sqlplus /nolog


SQL*Plus: Release 9.2.0.1.0 - Production on Fri Aug 22 17:54:08 2014


Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.


SQL> connect / as sysdba

Connected.

SQL> alter user username account unlock;


User altered.



728x90