#913
[Oracle] Disable password expiration & unlock expired account
Retrieve expired accounts :
select username, account_status from dba_users where ACCOUNT_STATUS LIKE '%EXPIRED%';
Retrieve profile :
select profile from DBA_USERS where username = 'USERNAME'
Update profile :
alter profile PROFILE_NAME limit password_life_time UNLIMITED;
select resource_name,limit from dba_profiles where profile='PROFILE_NAME'
Unlock user / renew password :
alter user USERNAME identified by PASSWORD account unlock;
[Maven] Manifest : Build Number & SVN Revision [Jasper] Common errors
Linked error :
ORA-28001: the password has expired
Unlock users :
Lock an account :
Unlock all user (inside try/catch) and update default profile: