본문 바로가기

DEV

[ORACLE] 비밀번호 만료 (the password will expire within)

 

내가한거

select resource_name, resource_type, limit from dba_profiles;
alter profile default limit PASSWORD_LIFE_TIME unlimited;
select username, account_status, lock_date, expiry_date from dba_users;
alter user PRJSEOUL identified by password;

 

참고