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.
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:
USER_NAME. Name of the created user (schema).
USER_PASSWORD. Password for the created user (schema).
TABLESPACE_NAME. Name of user tablespace.
TEMP_TABLESPACE_NAME. Name of temporary tablespace for the user.
After executing all the steps, proceed to creating a repository.
Set up the OS_AUTHENT_PREFIX parameter
Setup on domain authentication
See also: