Oracle備份工具、檔案命名格式、rman操作,oraclerman

來源:互聯網
上載者:User

Oracle備份工具、檔案命名格式、rman操作,oraclerman

一、常用工具:

Recovery Manager: rman只能執行熱備(mount或open狀態)
Oracle Secure Backup
使用者管理的備份: cp/dd [if= /of= /blocksize=]

 

二、rman命名

   rman名稱不允許重複,%U肯定不重複。

   %c 備份片的拷貝數

   %D 位於該月中的第幾天 (DD)

   %M 位於該年中的第幾月 (MM)

   %F 一個基於DBID 唯一的名稱,這個格式的形式為c-IIIIIIIIII-YYYYMMDD-QQ,

   %d 資料庫名稱其中IIIIIIIIII 為該資料庫的DBID,YYYYMMDD 為日期,QQ 是一個1-256 的序列

   %n 資料庫名稱,向右填補到最大八個字元

   %u 一個八個字元的名稱代表備份組與建立時間

   %p 該備份組中的備份片號,從1 開始到建立的檔案數

   %U 一個唯一的檔案名稱,代表%u_%p_%c

   %s 備份組的號

   %t 備份組時間戳記

   %T 年月日格式(YYYYMMDD)

 

三、rman相關操作

--登入rman
  rman target /
  rman target sys/passwork
  rman target sys/passwork nocatalog   (控制檔案方式)
  rman target sys/passwork catalog     (恢複目錄方式)


--查看參數
 
  RMAN> show all; 
  CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS; 
  CONFIGURE BACKUP OPTIMIZATION OFF; # default 
  CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default 
  CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default 
  CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default 
  CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default 
  CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default 
  CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default 
  CONFIGURE MAXSETSIZE TO UNLIMITED; # default
  CONFIGURE ENCRYPTION FOR DATABASE OFF; # default 
  CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default 
  CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default 
  CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/app/oracle/product/11.2.0/dbhome_1/dbs/snapcf_ORCL.f'; # default 

  注釋:#default表示該配置仍然是初始的預設值。回到預設配置configure..clear。

  1)configure retention policy to ..
    --用來決定哪些備份不在需要,共有三個可選項:
      a)redundancy 5
         --表示某個資料檔案的備份組存在的個數,此處為5份
      b)recovery window of 7 days
         --表示你希望資料庫最早能恢複到幾天前
      c)none
         --表示不需要採用保留原則
         注釋:a)和b)是互斥關係
 .
  2)CONFIGURE BACKUP OPTIMIZATION ...
     --理論上,備份最佳化僅對於唯讀資料表空間或offline資料表空間起作用。當然,對於已經備份過的歸檔記錄檔也會跳過,預設為off 

  3)CONFIGURE DEFAULT DEVICE TYPE TO ..
     --指定i/o操作的裝置類型:SBT or DISK.預設是disk。
  
  4)CONFIGURE CONTROLFILE AUTOBACKUP ..
     --當autobackup別置為on時,rman做任何備份操作,都會自動對控制檔案進行備份。

  5)CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'
     --配置控制檔案的備份片的路徑和格式
       比如:configure controlfile autobackup format for device type disk to '/u01/app/oracle/backup/%F'

  6)CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET

     --設定資料庫裝置類型的並行度。並行的數目決定了開啟通道的個數

  7)CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1

     CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1
     --是否啟動複合備份,向指定的i/o裝置中指定的位置產生指定的份數。預設為1.
       這個配置僅用於資料檔案和歸檔檔案,並且,只有在自動分配通道時才會生效!

  8)CONFIGURE MAXSETSIZE TO UNLIMITED
     --配置備份組的大小。一般是配置maxpiecesize,對備份片進行限制。

  9)CONFIGURE ENCRYPTION FOR DATABASE OFF
     --配置加密備份組。可以具體到某個資料表空間:
        configure encryption for tablespace users on;
        如果我們執行set encryption on indentified by think only,緊接其後所建立的備份就需要該密碼才能進行正常的恢複

  10)CONFIGURE ENCRYPTION ALGORITHM 'AES128'
      --指定密碼編譯演算法,還有一個是 ‘AES256'

  11)  CONFIGURE ARCHIVELOG DELETION POLICY TO NONE
       --指定歸檔檔案的刪除策略,預設是none,即:歸檔備份完之後就可以被刪除
         但是,在DG環境,DBA要保證歸檔檔案在standby端成功接收並且應用之前,primary端始終儲存該檔案,
         所以,DG環境當設為:applied on standby

  12)CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/app/oracle/product/11.2.0/dbhome_1/dbs/snapcf_ORCL.f'
      --配置控制檔案的快照檔案的存放路徑和檔案名稱,這個快照檔案是在備份期間產生的,用於控制檔案的讀一致性
        另外,CONFIGURE EXCLUDE FOR TABLESPACE <tablespace> [CLEAR];此命令用於將指定的資料表空間不備份到備份組中, 此命令對唯讀資料表空間是非常有用的。

--修改儲存天數
  用sqlplus修改備份資訊在控制檔案中保留的天數
  show parameter control_file_record_keep_time

  alter system set control_file_record_keep_time=30 scope=spfile
  shutdown immediate
  startup


--rman資料庫冷備份
  shutdown immediate;
  startup mount;
  backup database format='/u01/backup/rman/%d_%T_%s.bak';
  alter database open;
  sql 'alter system archive log current';


--rman資料庫熱備份
  backup database format='/u01/backup/rman/%d_%T_%s.bak';
  sql 'alter system archive log current';


--備份資料表空間
  backup tablespace emp;


--備份資料檔案
  backup datafile '/u01/mytest.dbf';
  backup datafile 5 format='/u01/backup/rman/%N_%s.dbf';


--備份歸檔日誌
  backup archivelog all
  backup archivelog from time 'sysdate-1'
  backup archivelog from sequence 400
  backup archivelog all delete input
  backup archivelog from sequence 400 delete input

  format='/u01/backup/rman/ar%T_%s.arc'   --指定路徑 %T 日期


--備份過去一天的歸檔檔案
  backup format='/u01/backup/rman/ar%d_%s.arc'
  archivelog
  from time='sysdate-1' until time='sysdate';


--備份資料檔案和歸檔日誌
  backup format='/u01/backup/rman/t%d_%s.bak' tablespace emp plus archivelog;


--備份控制檔案
  backup current controlfile format='/u01/backup/rman/%d_%s.ctl';


--備份spfile
  backup spfile format='/u01/backup/rman/spf%d_%s.par';


--壓縮備份組
backup as compressed backupset tablespace emp;


--建立控制檔案映像副本
copy current controlfile to '/u01/backup/rman/dbtest.ctl';
backup as copy format='/u01/backup/rman/dbtest01.ctl' current controlfile;


--建立資料檔案映像副本
backup as copy format='/u01/backup/rman/8.dbf' datafile 8;


--rman維護命令
list backup                                    --列出全部的備份資訊
list backup of database                        --列出Database Backup
list backup of tablespace emp                  --列出指定的資料表空間備份
list backup of datafile 5                      --列出指定的資料檔案備份
list backup of controlfile                     --列出控制檔案備份
list backup of spfile                          --列出spfile備份
list archivelog all                            --列出歸檔日誌
list backup of archivelog all                  --列出歸檔日誌的備份

list backup of database summary                --列出可用的備份
list backup of tablespace emp summary          --關於資料表空間的備份
list backup by file                            --按檔案類型列出備份
list expired backup of archivelog all summary  --失效的備份

report obsolete                                --查看到期的
delete obsolete                                --刪除到期的

list recoverable backup of database            --列出有效備份
list expired backup                            --列出失效的備份

list expired backup of archivelog all          --列出失效的歸檔記錄備份
list expired backup of archivelog
     until sequence 5                          --列出指定序號的失效歸檔記錄備份
list expired backup of archivelog
     until time "to_date('2012-6-30','yyyy-mm-dd')"   
                                               --列出指定時間的失效歸檔記錄備份備份

list copy                                      --列出映像檔案副本 
list copy of database
list copy of tablespace emp
list copy of datafile 6
list copy of archivelog all
list copy of controfile

report schema
report need backup                             --列出需要備份的
report need backup days 2 database             --列出超過2天沒有備份的

mount狀態下
list incarnation;
reset database to incarnation 980;


--刪除失效檔案
刪除失效備份
crosscheck backup(copy,archivelog all);
delete expired backup(copy,archivelog all);


刪除失效日誌
crosscheck archivelog all; 
delete expired archivelog all;

crosscheck backup of tablespace sysaux        --檢查資料表空間備份
crosscheck backup of datafile 2               --檢查資料檔案2備份
crosscheck backup of controlfile              --檢查控制檔案備份
crosscheck backup of spfile                   --檢查spfile
crosscheck backup of copy                     --檢查copy
crosscheck backup completed after 'sysdate-2'  --目前時間前2天的備份

crosscheck copy of database
crosscheck copy of tablespace emp
crosscheck copy of controlfile
crosscheck copy of spfile

list backup summary                 --獲得主鍵
validate backupset 16               --驗證備份組16的有效性
change                              --修改備份狀態
change backupset 16 unavailable
change backupset 16 available
change archivelog '/u01/backup/rman/***.log' unavailable

change backupset 16 delete                  --刪除備份組16(同步刪除)
delete expired backupset(archivelog all);   --刪除失效

delete expired   --刪除失效備份
delete obsolete  --刪除舊於備份策略日期(到期)的備份


--恢複檢查
restore database validate;
validate backupset 218;

restore database preview;
restore tablespace users preview;
restore datafile 5 preview;


--命令塊
run{
2> shutdown immediate;
3> startup mount;
4> allocate channel d1 type disk;
5> backup as backupset database
6> format='/u01/backup/rman/%d_%T.bak';
7> alter database open;
8> sql 'alter system archive log current';
9> }

select * from v$log;
select * from v$archived_log;
select * from v$backup_redolog;


--恢複顧問
list failure       --診斷錯誤
advise failure     --建議
repair failure     --修複(資料檔案和控制檔案)


--rman下對資料檔案重新命名
run{
2> sql 'alter tablespace test_user offline';
3> set newname for datafile '/u01/app/oracle/oradata/test_user.dbf'
4> to '/u01/app/oracle/oradata/test_user01.dbf';
5> restore tablespace test_user;
6> switch datafile all;
7> recover tablespace test_user;
8> sql 'alter tablespace test_user online';
}


--rman下對資料檔案移動
run{
2> sql 'alter tablespace test_user offline';
3> set newname for datafile '/u01/app/oracle/oradata/test_user01.dbf'
4> to '/u01/app/oracle/oradata/dbtest/test_user01.dbf';
5> restore tablespace test_user;
6> switch datafile all;
7> recover tablespace test_user;
8> sql 'alter tablespace test_user online';
}

 


Oracle RMAN 備份及恢複步驟

1、切換伺服器歸檔模式,如果已經是歸檔模式可跳過此步:
%sqlplus /nolog (啟動sqlplus)
SQL> conn / as sysdba (以DBA身份串連資料庫)
SQL> shutdown immediate; (立即關閉資料庫)
SQL> startup mount (啟動執行個體並載入資料庫,但不開啟)
SQL> alter database archivelog; (更改資料庫為歸檔模式)
SQL> alter database open; (開啟資料庫)
SQL> alter system archive log start; (啟用自動歸檔)
SQL> exit (退出) 2、串連:
rman target=sys/comeon@orcl; (啟動復原管理員) 3、基本設定:
RMAN> configure default device type to disk; (設定預設的備份裝置為磁碟)
RMAN> configure device type disk parallelism 2; (設定備份的並行層級,通道數)
RMAN> configure channel 1 device type disk fromat '/backup1/backup_%U'; (設定備份的檔案格式,只適用於磁碟裝置)
RMAN> configure channel 2 device type disk fromat '/backup2/backup_%U'; (設定備份的檔案格式,只適用於磁碟裝置)
RMAN> configure controlfile autobackup on; (開啟控制檔案與伺服器參數檔案的自動備份)
RMAN> configure controlfile autobackup format for device type disk to '/backup1/ctl_%F'; (設定控制檔案與伺服器參數檔案自動備份的檔案格式) 4、查看所有設定:
RMAN> show all 5、查看資料庫方案報表:
RMAN> report schema; 6、備份全庫:
RMAN> backup database plus archivelog delete input; (備份全庫及控制檔案、伺服器參數檔案與所有歸檔的重做日誌,並刪除舊的歸檔日誌) 7、備份資料表空間:
RMAN> backup tablespace system plus archivelog delete input; (備份指定資料表空間及歸檔的重做日誌,並刪除舊的歸檔日誌) 8、備份歸檔日誌:
RMAN> backup archivelog all delete input; 9、複製資料檔案:
RMAN> copy datafile 1 to '/oracle/dbs/system.copy'; 10、查看備份和檔案複本:
RMAN> list backup; 11、驗證備份:
RMAN> v......餘下全文>>
 
oracle RMAN備份時 會有兩種本份檔案格式bak 與dbf 這兩種格式有啥不同?

RMAN備份主要有兩種形式:
介質拷貝
備份組
其中介質拷貝相當於直接複製資料檔案,你的資料檔案是.dbf,拷貝出來自然就是.dbf了
備份組是將要備份的所有東西打包到一個檔案中,這個檔案的副檔名一般是.bak
 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.