oracleusers
Table of Contents
Oracle User Management
Summary: How to manage user accounts in Oracle.
Date: Around 2013
Refactor: 8 March 2025: Checked links and formatting.
The listed commands assume you're logged into the system as the oracle owner user, this way you don't have to provide the password when connecting to the database.
Resetting Oracle Account
The command below unlocks the account and sets a new password:
- alter user username identified by new_password;
- alter user username account unlock;
These commands can be combined as you can see below:
UNIX>sqlplus / as sysdba SQL*Plus: Release 10.2.0.4.0 - Production on Wed Sep 29 12:59:37 2010 Copyright (c) 1982, 2007, Oracle. All Rights Reserved. Connected to: Oracle Database 10g Release 10.2.0.4.0 - 64bit Production SQL> alter user dbuser account unlock identified by <password>;
Validate Oracle Account
Step 2 Validate User connection Now that the user has been reset, we can validate if a connection is possible UNIX>sqlplus dbuser SQL*Plus: Release 10.2.0.4.0 - Production on Wed Sep 29 12:59:37 2010 Copyright (c) 1982, 2007, Oracle. All Rights Reserved. Enter password: ********* Connected to: Oracle Database 10g Release 10.2.0.4.0 - 64bit Production
oracleusers.txt · Last modified: 2025/05/20 21:21 (external edit)