ORA-28002 : the password will expired within N days
2014.01.09 19:49
원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어
Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
원문 : http://www.ischo.net -- 조인상 //시스템 엔지니어
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
ORA-28002 : the password will expired within N days
오라클 11g 부터 기본 패스워드 만료정책이 180일로 바뀌었기 때문.
1. 패스워드 만료정책을 무제한으로 변경
alter profile default limit password_life_time unlimited;
2. 변경된 만료정책을 조회
select resource_name,limit from dba_profiles
where profile='DEFAULT' and resource_type='PASSWORD';