Notice
Recent Posts
Recent Comments
기록과 정리의 공간
[Oracle] ORA-28000 , 계정 잠금 해제하기 본문
오류 내용
ORA-28000: 계정이 잠겼습니다.
해결 방법
- DBA_USERS 딕셔너리를 조회하여 account_status를 확인해본다. 아래 이미지와 같이 OPEN이 아닌 LOCK이 되어 있음을 확인할 수 있었다.
select username, account_status, lock_date from dba_users where username = ?;
- 아래 명령문으로 LOCK을 해제해준다.
ALTER USER user_name ACCOUNT UNLOCK
Comments