search
HomeDatabaseMysql TutorialOCM_Session3_1_CreateanRMANCatalog

1. Create an RMAN Catalog 1.1 Create a tablespace in your EMREP database called RC_DATA. 1.1.1 Make it locally managed. 1.1.2 Create it with one datafile of size 100MB. 参考联机文档:Backup and Recovery Advanced User's Guide==10 Managing t


1. Create an RMAN Catalog
1.1 Create a tablespace in your EMREP database called RC_DATA. 1.1.1 Make it locally managed. 1.1.2 Create it with one datafile of size 100MB. 参考联机文档: Backup and Recovery Advanced User's Guide==>10 Managing the Recovery Catalog http://docs.oracle.com/cd/B19306_01/backup.102/b14191/rcmcatdb.htm#i1011365
创建一个表空间名RC_DATA在EMREP数据库里,本地管理,文件大小100M
[oracle@ocm2 ~]$ export ORACLE_SID=EMREP [oracle@ocm2 ~]$ sqlplus "/as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Mar 21 11:35:42 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.

Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production With the Partitioning, Oracle Label Security, OLAP and Data Mining options
SQL> create tablespace rc_data datafile '/u01/app/oracle/oradata/EMREP/rc_data01.dbf' size 100m 2 extent management local;
Tablespace created.

1.2 Create a user named RC_ADMIN with password RC_ADMIN in your EMREP 1.2.1 The user must have a default tablespace of RC_DATA. 1.2.2 Give the user the ability to manage a Recovery Catalog.
创建一个用户名RC_ADMIN,密码RC_ADMIN在EMREP数据库里,默认表空间是RC_DATA,并且给这个用户管理恢复目录的权限
SQL> create user RC_ADMIN identified by RC_ADMIN default tablespace RC_DATA;
User created.
SQL> grant connect,recovery_catalog_owner to RC_ADMIN;
Grant succeeded.

1.3 Create a Recovery Catalog 1.3.1 Create the catalog in the EMREP database owned by RC_ADMIN 1.3.2 Register the PROD database with the catalog
在EMREP数据库里创建一个目录,所有者为rc_admin,并将PROD数据库注册到这个目录里。在创建目录时,注意表空间的使用权限为quota unlimited。
[oracle@ocm2 ~]$ rman catalog rc_admin/rc_admin
Recovery Manager: Release 10.2.0.1.0 - Production on Fri Mar 21 12:08:14 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.
connected to recovery catalog database
RMAN> create catalog;
ORACLE error from recovery catalog database: ORA-01950: no privileges on tablespace 'RC_DATA'
RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-06433: error installing recovery catalog
RMAN> exit

Recovery Manager complete. [oracle@ocm2 ~]$ sqlplus "/as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Mar 21 12:20:38 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.

Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production With the Partitioning, Oracle Label Security, OLAP and Data Mining options
SQL> alter user rc_admin quota unlimited on RC_DATA;
User altered.
SQL> exit Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production With the Partitioning, Oracle Label Security, OLAP and Data Mining options [oracle@ocm2 ~]$ rman catalog rc_admin/rc_admin
Recovery Manager: Release 10.2.0.1.0 - Production on Fri Mar 21 12:21:25 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.
connected to recovery catalog database
RMAN> create catalog;
recovery catalog created
RMAN>
连接目标数据库和恢复目录数据库:
[oracle@ocm2 admin]$ rman target sys/oracle@prod catalog rc_admin/rc_admin@emrep
Recovery Manager: Release 10.2.0.1.0 - Production on Fri Mar 21 12:44:20 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.
connected to target database: PROD (DBID=254361867) connected to recovery catalog database
RMAN> register database;
database registered in recovery catalog starting full resync of recovery catalog full resync complete
RMAN>
RMAN> report schema;
starting full resync of recovery catalog full resync complete Report of database schema
List of Permanent Datafiles =========================== File Size(MB) Tablespace RB segs Datafile Name ---- -------- -------------------- ------- ------------------------ 1 325 SYSTEM YES /u01/app/oracle/oradata/PROD/Disk1/system01.dbf 2 116 UNDOTBS1 YES /u01/app/oracle/oradata/PROD/Disk1/undotbs01.dbf 3 325 SYSAUX NO /u01/app/oracle/oradata/PROD/Disk1/sysaux01.dbf 4 400 EXAMPLE NO /u01/app/oracle/oradata/PROD/Disk1/example01.dbf 5 40 INDX NO /u01/app/oracle/oradata/PROD/Disk1/indx01.dbf 6 10 TOOLS NO /u01/app/oracle/oradata/PROD/Disk1/tools01.dbf 7 48 USERS NO /u01/app/oracle/oradata/PROD/Disk1/users01.dbf 8 48 OLTP NO /u01/app/oracle/oradata/PROD/Disk1/oltp01.dbf
List of Temporary Files ======================= File Size(MB) Tablespace Maxsize(MB) Tempfile Name ---- -------- -------------------- ----------- -------------------- 1 20 TEMPTS1 20 /u01/app/oracle/oradata/PROD/Disk1/temp01.dbf 2 20 TEMP1 20 /u01/app/oracle/oradata/PROD/Disk1/temp11.dbf 3 20 TEMP2 20 /u01/app/oracle/oradata/PROD/Disk1/temp12.dbf
RMAN>

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Reduce the use of MySQL memory in DockerReduce the use of MySQL memory in DockerMar 04, 2025 pm 03:52 PM

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

How to solve the problem of mysql cannot open shared libraryHow to solve the problem of mysql cannot open shared libraryMar 04, 2025 pm 04:01 PM

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Run MySQl in Linux (with/without podman container with phpmyadmin)Run MySQl in Linux (with/without podman container with phpmyadmin)Mar 04, 2025 pm 03:54 PM

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

What is SQLite? Comprehensive overviewWhat is SQLite? Comprehensive overviewMar 04, 2025 pm 03:55 PM

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

Running multiple MySQL versions on MacOS: A step-by-step guideRunning multiple MySQL versions on MacOS: A step-by-step guideMar 04, 2025 pm 03:49 PM

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)