RMAN備份中檔案與channel對應關係的格式問題

tolywang發表於2012-03-25
[i=s] 本帖最後由 tolywang 於 2012-3-24 17:36 編輯

Oracle 11.2.0.2  非歸檔測試庫  ,  應用 EBS R12.1.3   

需要備份此資料庫, 但是磁碟空間不足, 只能劃分到兩個磁碟上 。 100多個檔案, 不知道怎麼寫 。
共 580G 左右,  /data/d2 空間約為 60G ,  只能放最後約 7,8個檔案 。 檔案號一個個寫出來,太
多了 。  或者還有沒有其他方式  ?   

順便問問,壓縮比是 5:1  ?   

RMAN >
run{
allocate channel c1 device type disk format '/data/d3/rmanbak/full_%d_%s_%p_%u.bak'  maxpiecesize=10G;
allocate channel c2 device type disk format '/data/d3/rmanbak/full_%d_%s_%p_%u.bak'  maxpiecesize=10G;
allocate channel c3 device type disk format '/data/d3/rmanbak/full_%d_%s_%p_%u.bak'  maxpiecesize=10G;
allocate channel c4 device type disk format '/data/d3/rmanbak/full_%d_%s_%p_%u.bak'  maxpiecesize=10G;
allocate channel c5 device type disk format '/data/d2/rmanbak/full_%d_%s_%p_%u.bak'  maxpiecesize=10G;
backup as compressed backupset database  
  (datafile 1~25  channel c1)
  (datafile 26~50  channel c2)
  (datafile 51~75  channel c3)
  (datafile 76~94  channel c4)
  (datafile 95~100  channel c5);
release channel c1;
release channel c2;
release channel c3;
release channel c4;
release channel c5;
}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-719453/,如需轉載,請註明出處,否則將追究法律責任。

相關文章