How to reset the Oracle database password (ORA-28001 error)

ORA-28001 error indicates the password has expired.

In order to reset the password, on the computer on which the Oracle database is located, run the command line start-> run-> cmd

And then perform:

  1. sqlplus  /nolog
  2. connect / as sysdba
  3. ALTER USER user_name IDENTIFIED BY new_password;

Please remember that after you reset your password, you must enter it in the window that appears when you start the aSISt application.