Skip to main content
SnapManager for SAP

Create an Oracle user for the repository database instance

Contributors

An Oracle user is required to log in to and access the repository database instance. You must create this user with connect and resource privileges.

  1. Log in to SQL *Plus:

    sqlplus '/ as sysdba'

  2. Create a new user and assign an administrator password to that user:

    create user user_name identified by admin_password default tablespace tablespace_name quota unlimited on tablespace_name;

    • user_name is the name of the user you are creating for the repository database.

    • admin_password is the password you want to assign to the user.

    • tablespace_name is the name of the tablespace created for the repository database.

  3. Assign connect and resource privileges to the new Oracle user:

    grant connect, resource to user_name;