Skip to content

Instantly share code, notes, and snippets.

@otwm
Created March 2, 2016 04:18
Show Gist options
  • Save otwm/14017fcb381b9960386b to your computer and use it in GitHub Desktop.
Save otwm/14017fcb381b9960386b to your computer and use it in GitHub Desktop.
oracle 만료기간 설정
-- 만료기간 검색
select resource_name, limit from dba_profiles
where profile='DEFAULT'
;
-- 만료기간 무제한 설정
alter profile default limit password_life_time unlimited;
-- 만료 계정 검색
select username,account_status,lock_date,expiry_date from dba_users
-- 비밀 번호 재설정
alter user USERNAME identified by USERNAME;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment