Troubleshooting

[Troubleshooting] the password has expired

이주여이 2024. 7. 11. 00:01

sql developer에서 패스워드 만료됐다고 접속이 안됐다.

windows 기준으로 cmd에서 아래와 같이 작업해주면 된다.

 

C:\Users\PC>sqlplus conn as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on 화 7월 9 16:49:06 2024

Copyright (c) 1982, 2010, Oracle.  All rights reserved.

비밀번호 입력:

다음에 접속됨:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> alter user ${계정명 } account unlock;

사용자가 변경되었습니다.

SQL> alter user ${계정명 } identified by ${비밀번호 };

사용자가 변경되었습니다.