RMAN theory



A full backup of a data file includes all used blocks of the data file. As explained in "About RMAN Backups", an RMAN backup can be either an image copy or backup set. An image copy is a bit-for-bit copy of the data file, and thus includes unused blocks.

 rman全备:备份所有的块(无论块是否被使用),rman备份既可以是备份集也可以是镜像副本。

镜像副本:基于bit-to-bit的数据文件复制(包括未使用的块);


RMAN incremental backups copy only those blocks in a data file that change between backups. A level 0 incremental backup, which copies all blocks in the data file, is used as a starting point for an incremental backup strategy.

RMAN增量备份:只复制那些有变化的数据块,0级增量备份复制所有数据块,0级备份时作为增量备份的开始。

About Backup Management
An essential part of a backup and recovery strategy is managing backups after you create them. Backup management includes deleting obsolete backups and performing periodic checks to ensure that backups are available and usable.

备份管理:

作为备份、恢复策略必不可少的一部分是管理备份;备份管理包括删除过期、不可用备份以及定期检验备份的可靠性和可用性;


Cross-Checking Backups

Cross-checking a backup synchronizes the physical reality of backups with their logical records in the RMAN repository. For example, if a backup on disk was deleted with an operating system command, then a cross-check detects this condition. After the cross-check, the RMAN repository correctly reflects the state of the backups.
Backups to disk are listed as available if they are still on disk in the location listed in the RMAN repository, and if they have no corruption in the file header. Backups on tape are listed as available if they are still on tape. The file headers are not checked for corruption. Backups that are missing or corrupt are listed as expired.


cross-check操作:

检测系统层面删除的备份与存留在控制文件中的文件是否一致。如果系统层面存在且控制文件中也存在此信息,那么cross-check则标记此类文件为可用,否则将会列出来。


Deleting Expired Backups

Deleting expired backups removes from the RMAN repository those backups that are listed as 
EXPIRED
. Expired backups are those found to be inaccessible during a cross-check. No attempt is made to delete the files containing the backup from disk or tape; this action updates only the RMAN repository.













你可能感兴趣的:(RMAN theory)