Oracle8i Recovery Manager User's Guide and Reference Release 2 (8.1.6) Part Number A76990-01 |
|
Recovery Manager Command Syntax, 15 of 50
To create a schema for the recovery catalog. Typically, you create this schema in a separate recovery catalog database.
Oracle8i Administrator's Guide for more information about the RECOVERY_CATALOG_OWNER role.
See Also:
This example creates a user RMAN, grants RMAN the RECOVERY_CATALOG_OWNER role, then creates the recovery catalog in the schema RMAN.CATTBS of the database RCAT:
% sqlplus sys/change_on_install@rcat; SQL> CREATE USER rman IDENTIFIED BY rman 2> DEFAULT TABLESPACE cattbs QUOTA UNLIMITED ON cattbs; SQL> GRANT recovery_catalog_owner TO rman; SQL> exit % connect catalog rman/rman@rcat; RMAN> create catalog tablespace cattbs;
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|