Perform this task if you need to change the password of the Oracle database default user or the BFM database user. The default users include the sys and system users and the BFM database user refers to the bfm user.
The procedures for changing the passwords of the BFM database user and the Oracle database default user are similar. The only difference is that after changing the password of the BFM database user, you still need to change the value of bme.password in the ${HOME}/bfm/tomcat/webapps/bme/WEB-INF/classes/jdbc.properties configuration file of the BFM.
> sqlplus /as sysdba
SQL> alter user username identified by new password;
The command parameters are described as follows:
The password is successfully changed if the following information is displayed:
User altered.
sqlplus username/new password@$ORACLE_SID
If the connection is successful, the password is changed successfully.