RMAN備份中不同版本是否備份空資料塊的問題
RMAN有兩種不同的壓縮方式 :
1. Null Compression
2. Unused Block Compression
在Oracle9i開始到10.1,RMAN僅僅支援NULL compression, RMAN不會備份從來沒有被分配使用的Block但是會備份曾經被使用但是當前沒有資料的塊 。
從10.2版本開始,Oracle RMAN不再備份目前不包含資料的Block(包括從來沒有分配的block以及曾經被使用但當前沒有資料的塊)這被稱為Unused Block Compression 。
-------------------------------------------------------------------------------------------------------------
參考: Metalink Doc ID: 563427.1
A Complete Understanding of RMAN Compression
By default RMAN has two types of compression :
1. Null Compression
2. Unused Block Compression
Till Oracle Version 10.1 only Null compression in done by default but from Oracle Version 10.2 Null and Unused Block Compression is done. These compressions are done automatically, no special command is required for these compressions.
1. Null Compression : When backing up datafiles into backup sets, RMAN does not back up the contents of data blocks that have never been allocated. (In previous releases, this behavior. was referred to as NULL compression). This means RMAN will never backup the blocks that are ever used. Till Oracle version 9i RMAN performs Null Compression.
Example : You have a tablespace having one datafile of size 100MB and out of 100MB only 50 MB is used. Then RMAN will backup only 50MB.
2. Unused Block Compression: From Oracle version 10.2 RMAN skips the blocks that do no currently contain data and this is called Unused Block Compression. RMAN now creates more compact backups of datafiles, by skipping datafile blocks that are not currently used to store data. In previous releases, RMAN only supported NULL compression, which skipped space in datafiles that had never been allocated. No extra action is required on the part of the DBA to use this feature.
Example : You have a tablespace having one datafile of size 100MB and out of 100MB, 50MB is used by the user tables. Then user dropped a table beloning to that tablespace which was of 25MB, with the new Unused Block Compression on 25MB of the files is backed up. In this example if null compression is used then it would have backed up 50MB because Null Compression will consider the blocks that are formatted/ever used.
Unused Block Compression is done, if all of the following conditions apply:
+ The COMPATIBLE initialization parameter is set to 10.2
+ There are currently no guaranteed restore points defined for the database
+ The datafile is locally managed
+ The datafile is being backed up to a backup set as part of a full backup or a level 0 incremental backup
+ The backup set is being created on disk.
Skipping unused data blocks where possible enables RMAN to back up datafiles using less space, and can make I/O more efficient.
BINARY COMPRESSION :
Binary Compression can be done by specifying "AS COMPRESSED" clause in backup command, this compression is called as binary compression.
RMAN can apply a binary compression algorithm as it writes data to backup sets. This compression is similar to the compression provided by many tape vendors when backing up data to tape. But we cannot give exact percentage of compression. This binary compression algorithm can greatly reduce the space required for disk backup storage. It is typically 2x to 4x, and greater for text-intensive databases.
The command to take the compressed backup :
RMAN> backup as compressed backupset database;
+ There is some CPU overhead associated with compressing backup sets. If the database being backed up is running at or near its maximum load, you may find the overhead from using AS COMPRESSED BACKUPSET unacceptable. In most other circumstances, compressing backupsets saves enough disk space to be worth the CPU overhead.
+ There is no special command to restore database from the compressed backupsets, the restore command will be the same as with uncompressed backups.
+ The restore from the compressed backpuset will take more time than uncompressed backupsets.
--------------------------------------------------------------------------------
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-615802/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20190522]rman備份問題.txt
- RMAN備份中發現壞塊
- 使用RMAN備份資料庫資料庫
- 利用RMAN備份重建資料庫資料庫
- RMAN的備份原理
- 【RMAN】RMAN的備份保留策略
- RMAN備份概述
- 【備份】RMAN中對控制檔案的幾種備份方法
- 【RMAN】RMAN備份至ASMASM
- [20180423]關於rman備份的問題2.txt
- RMAN備份恢復典型案例——RMAN備份&系統變慢
- [20210527]rman與undo表空間備份.txt
- RMAN備份進度
- rman 備份指令碼指令碼
- oracle資料庫使用rman備份指令碼Oracle資料庫指令碼
- [20190510]rman備份的疑問8.txt
- [20190510]rman備份的疑問7.txt
- [20190509]rman備份的疑問5.txt
- 【RMAN】同時建立多個備份(建立多重備份)
- RMAN 備份相關的概念
- rman 增量備份恢復
- Oracle RMAN備份實戰Oracle
- Oracle OCP(60):RMAN 備份Oracle
- RMAN備份恢復技巧
- 【rman備份策略】實驗
- Oracle資料庫備份、災備的23個常見問題Oracle資料庫
- rman開啟備份優化對備份歸檔的影響優化
- 初探MySQL資料備份及備份原理MySql
- 分享Oracle Rman的備份指令碼Oracle指令碼
- RMAN加密備份的三種方式加密
- [BUG反饋]後臺備份資料庫後,只備份了結構,資料全部空的。資料庫
- RMAN備份恢復典型案例——資料庫卡頓資料庫
- RMAN備份詳解(轉載)
- RMAN備份異機恢復
- [BUG反饋]ot資料庫備份問題資料庫
- RMAN備份中的通道(CHANNEL)相關 - PARALLELISM 、FILESPERSETParallel
- [20190313]備份問題.txt
- oracle資料庫備份之exp增量備份Oracle資料庫
- 【RMAN】Oracle中如何備份控制檔案?備份控制檔案的方式有哪幾種?Oracle