■ IT 가이드/Oracle DB
[Oracle] ORA-28000 : the account is locked (계정잠김)
직장인W군
2022. 1. 21. 09:10
728x90
반응형
Oracle Database 로그인 시 "ORA-28000 : the account is locked" 오류 가이드 정리하여 공유합니다.
■ 오류
- ORA-28000 : the account is locked
- ORA-28000 : 계정이 잠금되었습니다
|
■ 해결방법
1. system 계정 로그인 후 계정 잠금 확인
SELECT username, account_status, lock_date
FROM dba_users
WHERE username ='계정이름';
2. 계정 잠금 해제
- 쿼리
ALTER USER 계정이름 ACCOUNT UNLOCK;
3. 계정 잠금 확인
- 쿼리
SELECT username, account_status, lock_date
FROM dba_users
WHERE username ='계정이름';
728x90
반응형