오라클계정잠금해제 (1) 썸네일형 리스트형 ORACLE DB계정 잠김 해제하는 방법 ORA-28000:The accountis locked ORACLE DB계정 잠김 해제하는 방법에 대해 알아보려고 합니다. 오류코드 : ORA-28000:The accountis locked. 해결방법 1. DB계정 상태 확인하는 SQL select username, account_status, lock_date drom dba_users where username = 계정명 ; select username, account_status, lock_date drom dba_users where username = 계정명 ; 2. DB계정 잠금해제하는 SQL alter user 계정명 account unlock; alter user 계정명 account unlock; 3. DB계정 패스워드 재설정 alter user 계정명 identified by 비밀번호; a.. 이전 1 다음