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 ='계정이름';
반응형
'■ IT 가이드 > Oracle DB' 카테고리의 다른 글
[Oracle] Session/Process 확인 및 설정 가이드 (0) | 2022.01.22 |
---|---|
[Oracle] ORA-30036 : 세그먼트를 8만큼 실행 취소 테이블스페이스 'xxx'에서 확장할수 없음 (0) | 2022.01.22 |
[Oracle] INS-20802 : Oracle Database Configuration Assistant을 실패했습니다. 처리 가이드 (0) | 2022.01.21 |
[Oracle] Database OS 지원 범위 (2) | 2022.01.20 |
[Oracle] INS-06101 : IP address of localhost could not be determined 오류 (0) | 2022.01.20 |
댓글