Skip to main content
SnapManager Oracle

Creating an Oracle database user for the target database

Contributors

An Oracle database user is required to log in to the database and perform SnapManager operations. You must create this user with the sysdba privilege if a user with the sysdba privilege does not exist for the target database.

SnapManager can use any Oracle user with the sysdba privilege that exists for the target database. For example, SnapManager can use the default sys user. However, even if the user exists, you can create a new user for the target database and assign the sysdba privilege.

You can also use the OS authentication method wherein the operating system (OS) allows the Oracle database to use the credentials that are maintained by the OS to authenticate users to log in to the database and perform SnapManager operations. If you are authenticated by the OS, you can connect to the Oracle database without specifying a user name or password.

  1. Log in to SQL *Plus: 'sqlplus / as sysdba'

  2. Create a new user with an administrator password: 'create useruser_name identified by admin_password;'

    user_name is the name of the user you are creating and admin_password is the password that you want to assign to the user.

  3. Assign the sysdba privilege to the new Oracle user: 'grant sysdba to user_name;'