데이터베이스

[oracle] ora-28000: the account is locked 오류

지승준 2015. 5. 17. 15:28

증상

ora-28000: the account is locked 오류 해결방법


원인

30일 동안 (Default) 해당 계정으로 로그인하지 않을 경우 lock 걸림.


해결방법

접속 : 

1
sqlplus / as sysdba


lock걸린 User찾기 : 

1
select username, account_status, to_char(lock_date,'yy/mm/dd hh24:mi') lock_date, profile from dba_users


lock풀기 (유저가 scott 일 경우) : 

1
alter user scott account unlock


패스워드변경 : 

1
alter user scott identified by manager