Oracle Account Expired
Oracle安裝完後,User Account預設180日後會失效,以下為解開失效狀態,及修改為永不失效的方式
<查詢ABC使用者的Profile>
<查詢DEFAULT Profile的設定>
<修改為永不失效>
<解開鎖定>
reference web:
http://xmlandmore.blogspot.tw/2013/02/oracle-how-to-configure-user-accounts.html
http://stackoverflow.com/questions/1095871/how-do-i-turn-off-oracle-password-expiration
<查詢ABC使用者的Profile>
select username, profile from DBA_USERS where username = 'ABC';
<查詢DEFAULT Profile的設定>
select resource_name, limit from dba_profiles where profile='DEFAULT' and resource_type='PASSWORD';
<修改為永不失效>
alter profile DEFAULT limit password_life_time UNLIMITED;
<解開鎖定>
alter user ABC identified by abc123 account unlock;
reference web:
http://xmlandmore.blogspot.tw/2013/02/oracle-how-to-configure-user-accounts.html
http://stackoverflow.com/questions/1095871/how-do-i-turn-off-oracle-password-expiration
留言
張貼留言