rman及catalog配置使用

2021-06-16 07:42:13 字數 1333 閱讀 4890

1、rman常用配置

配置自動分配通道

configure  channel device type disk  format  '/...../%s'

配置備份的冗餘策略

configure  retention policy to redundancy 2  儲存最近的兩次備份資訊

configure retention policy to recovery window  of 7 days  保留最近7天的備份資訊

檢查陳舊的備份資訊

report obsolete

配置備份集中備份片的副本個數(最多4個)

configure datafile backup copies for device type disk 2

自動檢查要備份的檔案是否需要備份

configure backup optimization on(設定為on,則表示rman在進行備份時檢查要備份的檔案是否有相同的檔案在備份集中,如果有則不進行備份。 判斷標準是兩個相同的檔案內容完全一致)

恢復到預設的configure資訊

configure retention policy clear

檢視資料庫的物理模式

report schema

檢視那些檔案需要備份

report  need backup

2、catalog資料庫的配置

1>在catalog資料庫上建立乙個表空間供catalog使用

create tablespace rman_ts datafile '/..../..dbf' size 50m extent management  local uniform size 126k;

2>在catalog資料庫上建立使用者並賦予許可權

create user rman_user identified by rman_user default tablespace rman_ts quota unlimited on rman_ts;

grand recovery_catalog_owner to rman_user;

grand connect,resource to rman_user;

3>在catalog上配置並啟動監聽程式,在target資料庫上配置本地命名服務。

4>在target資料庫的機器上通過本地命名服務連線到catalog資料庫

rman target / catalog rman_user/rman_user@rman_tns;

rman>create catalog tablespace rman_ts;

rman>register database;  在catalog資料庫上註冊target資料庫。

rman 建立catalog實驗及說明

前提 請在兩台機器上分別裝上資料庫軟體,分別建立資料庫,並啟動資料庫 oracle oracle11gocp catalog cat etc hosts do not remove the following line,or various programs that require network...

rman的catalog資料庫配置說明

資料庫為mytest和mytest1,以mytest1為catalog資料庫配置mytest的rman引數。c documents and settings zhenhuan yu.synnex grp set oracle sid mytest1 c documents and settings ...

RMAN中catalog和nocatalog區別

nocatalog方式就是用control file作為catalog,每一次備份都要往控制檔案裡面寫好多備份資訊,控制檔案裡面會有越來越多的備份資訊。若為catalog則必須要首先要建立目錄備份資料庫,建立恢復目錄。當通過rman nocatalog方式備份oracle,oracle使用contr...