ORA-28001: the password has expired
Passwords in Oracle can expire after some time. Here is solution how to remove expiration and create new password.
- Open sqlplus
- Enter connect / as sysdba
- Find profile connected to expired user: select profile from DBA_USERS where username='
'; - Default name of profile is DEFAULT.
- alter profile DEFAULT limit password_life_time UNLIMITED;
- To show more info: select resource_name,limit from DBA_PROFILES;
- Change user's password: alter user
identified by ; - Commit
Now you can connect again ;)
This comment has been removed by a blog administrator.
ReplyDelete