The requested article is not available. Either it doesn't apply to this version of the product or the relevant information is organized differently in this version of the docs. You can search, browse, or go back to the other version.
Create the repository database instance
-
PDF of this doc site
-
Administration for UNIX
-
Installation and Administration for Windows
-

Collection of separate PDF docs
Creating your file...
This may take a few minutes. Thanks for your patience.
Your file is ready
The repository database instance is an Oracle database in which you create the SnapManager repository. The repository database instance must be a stand-alone database and cannot be the target database.
What you'll need
You must have an Oracle database and a user account to access the database.
Steps
-
Log in to SQL *Plus:
sqlplus '/ as sysdba'
-
Create a new tablespace for the SnapManager repository:
create tablespacetablespace_name datafile ′/u01/app/oracle/oradata/datafile/tablespace_name.dbf′ size 100M autoextend on;
tablespace_name
is the name of the tablespace. -
Verify the block size of the tablespace:
select tablespace_name, block_size from dba_tablespaces;
SnapManager requires a minimum 4-K block size for the tablespace.