-
-
Save otwm/14017fcb381b9960386b to your computer and use it in GitHub Desktop.
oracle 만료기간 설정
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 만료기간 검색 | |
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