관리 메뉴

웹개발 블로그

[Oracle] (에러) ORA-28001: the password has expired28001. 00000 - "the password has expired" 본문

◆SQL/OracleSQL

[Oracle] (에러) ORA-28001: the password has expired28001. 00000 - "the password has expired"

쿠키린 2024. 8. 5. 01:09

문제: Oracle SQL Developer 실행 후 ORA-28001: 비밀번호가 만기되었습니다.

요청한 작업을 수행하는 중 오류 발생:
ORA-28001: the password has expired
28001. 00000 -  "the password has expired"
*Cause:    The user's account has expired and the password must be changed.
           This can happen if any of the followings is true:
           * The database administrator expired the user account using the
           ALTER USER PASSWORD EXPIRE statement.
           * The user account was associated with a password profile with
           a limited password life time and the user's password had not
           been changed in accordance with the PASSWORD_LIFE_TIME
           parameter.
           * The user account was created as part of either a database
           import inside a Pluggable Database (PDB) or clone of an
           existing PDB and the user's password did not meet the
           requirements of the mandatory profile enforced in the PDB.
*Action:   Change the password or contact the database administrator to
           understand the rules for choosing the new password which complies
           with the mandatory profile.
업체 코드 28001

 

💥해결

  • 순서1) CMD 실행
  • 순서2) C:\>sqlplus "/as sysdba"
  • 순서3) SQL>ALTER USER 사용자이름 IDENTIFIED BY 변경할비밀번호;