How to Change your Oracle Database Account Password
Description
This article describes the steps to change/reset your personal Banner or ODS database account password. It also outlines the steps to change your password in other Oracle databases using SQL*Plus and SQL Developer. These steps only apply to personal database accounts and not web or departmental accounts. If you need to change a web or departmental account password, you will need to submit a ticket. Also note that if your database account is locked, you will need to submit a ticket to have it unlocked for you.
To change your Banner database password:
- Go to the following URL in a web browser: https://apps.is.colostate.edu/password-change/
- Login with your NetID credentials.
- In the “Environment” drop-down box, select either “Production” to change your password in the Banner production (banprod) database, or select “Non-Production” to change your password in ALL Banner test/development databases.
- Enter your new password, and confirm your new password in the text entry boxes.
- Click the “Submit” button.
To change your ODS database password:
- Go to the following URL in a web browser: https://dataaccessreq.is.colostate.edu/account
- Choose your campus location and login with your NetID credentials.
- Click on the “MY ACCOUNT” button at the top of the screen.
- In the “ODS Environment” drop-down box, select either “Production ODS” to change your password in the ODS production (odsprod) database, or select “Non-Production ODS” to change your password in ALL ODS test/development databases.
- Enter your new password, and confirm your new password in the text entry boxes.
- Click the “RESET PASSWORD” button.
To change your password manually in any Oracle database:
Instructions for SQL*Plus
- Open SQL*Plus from your command line or terminal.
- Connect to the database and account you wish to change. For example: sqlplus your_username@your_database
**Replace "your_username" with your actual username and "your_database" with your database service name
- SQL*Plus will prompt you to enter your current password. Type it in and press Enter.
- Once logged in, use the following command to change your password: PASSWORD
- SQL*Plus will then prompt you to enter your new password twice (once for confirmation).
- After successfully changing your password, you can exit SQL*Plus by typing: EXIT
Instructions for Oracle SQL Developer
- Launch the SQL Developer application from your start menu or desktop shortcut.
- Right-click on the connection you wish to change.
- Select the "Reset Password" option from the popup menu.
- In the subsequent dialog, enter the current password and the new password with confirmation.
- Click the "OK" button.
- If you have your connection saved in SQL Developer, you may need to update it with your new password. Right-click your connection, select "Properties", and enter your new password in the Password field. Click "OK" to save the changes.
Outcome
Your Oracle database password will be updated.