Preparing Oracle Server

Oracle server is prepared by the DBMS administrator.

Scripts are executed using any available methods, for example, via the SQL Plus application included in the standard kit of the Oracle DBMS front and back end.

Creating a Database User (Schema)

The next step is creating a database user (schema). This user (schema) is required to store platform metadata.

create user USER_NAME identified by USER_PASSWORD default tablespace TABLESPACE_NAME temporary tablespace TEMP_TABLESPACE_NAME profile default;

grant connect to USER_NAME;

grant resource to USER_NAME;

revoke unlimited tablespace from USER_NAME;

alter user USER_NAME quota unlimited on TABLESPACE_NAME;

Where:

After executing all the steps, proceed to creating a repository.

Advanced Settings

Set up the OS_AUTHENT_PREFIX parameter

Setup on domain authentication

See also:

Preparing DBMS Back End