搜尋
首頁資料庫mysql教程OCM_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>

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
如何使用Alter Table語句在MySQL中更改表?如何使用Alter Table語句在MySQL中更改表?Mar 19, 2025 pm 03:51 PM

本文討論了使用MySQL的Alter Table語句修改表,包括添加/刪除列,重命名表/列以及更改列數據類型。

如何為MySQL連接配置SSL/TLS加密?如何為MySQL連接配置SSL/TLS加密?Mar 18, 2025 pm 12:01 PM

文章討論了為MySQL配置SSL/TLS加密,包括證書生成和驗證。主要問題是使用自簽名證書的安全含義。[角色計數:159]

您如何處理MySQL中的大型數據集?您如何處理MySQL中的大型數據集?Mar 21, 2025 pm 12:15 PM

文章討論了處理MySQL中大型數據集的策略,包括分區,碎片,索引和查詢優化。

哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什麼?哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什麼?Mar 21, 2025 pm 06:28 PM

文章討論了流行的MySQL GUI工具,例如MySQL Workbench和PhpMyAdmin,比較了它們對初學者和高級用戶的功能和適合性。[159個字符]

如何使用Drop Table語句將表放入MySQL中?如何使用Drop Table語句將表放入MySQL中?Mar 19, 2025 pm 03:52 PM

本文討論了使用Drop Table語句在MySQL中放下表,並強調了預防措施和風險。它強調,沒有備份,該動作是不可逆轉的,詳細介紹了恢復方法和潛在的生產環境危害。

您如何用外國鑰匙代表關係?您如何用外國鑰匙代表關係?Mar 19, 2025 pm 03:48 PM

文章討論了使用外國密鑰來代表數據庫中的關係,重點是最佳實踐,數據完整性和避免的常見陷阱。

如何在JSON列上創建索引?如何在JSON列上創建索引?Mar 21, 2025 pm 12:13 PM

本文討論了在PostgreSQL,MySQL和MongoDB等各個數據庫中的JSON列上創建索引,以增強查詢性能。它解釋了索引特定的JSON路徑的語法和好處,並列出了支持的數據庫系統。

如何保護MySQL免受常見漏洞(SQL注入,蠻力攻擊)?如何保護MySQL免受常見漏洞(SQL注入,蠻力攻擊)?Mar 18, 2025 pm 12:00 PM

文章討論了使用準備好的語句,輸入驗證和強密碼策略確保針對SQL注入和蠻力攻擊的MySQL。(159個字符)

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
3 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。

Atom編輯器mac版下載

Atom編輯器mac版下載

最受歡迎的的開源編輯器

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

mPDF

mPDF

mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),