본문 바로가기
Programming Language/Oracle Error

[Oracle_Error] ORA-28002: the password will expire within 7 days

by 떠농 2022. 1. 7.
반응형

오랜만에 Oracle SQL developer 계정 생성을 위해 Run SQL Command Line 접속 하였다.

 

그런데,, 에러 발생!

ORA-28002: the password will expire within 7 days

계정 생성 시 보이는 에러

scott 계정 비밀번호가 곧 만료가 된다는 것!!!

 

이를 해결하기 위한 방법은 다음과 같다.

 

1) conn system/tiger as sysdba

2) alter user 오라클에서 제공하는 기본 계정 identified by 비밀번호 account unlock;

3) grant connect, resource to scott;

 

위 방법대로 입력 후 계정 생성 시,

정상적으로 계정 연결 및 생성이 가능해진다.

반응형

댓글