Determine if Oracle is using the default login password
You can determine if the DBMS is using the default password.
Run the following SQL statement to determine if the PORTAL user uses the default password:
SELECT * FROM SYS.DBA_USERS_WITH_DEFPWD where username = 'PORTAL';
If the row is returned, it means the PORTAL user uses the default password.