053-149

You perform a backup using the following BACKUP command:
RMAN> BACKUP AS COMPRESSED BACKUPSET DATABASE;
Which statement is true of this command?
A. A different procedure is required to restore a database from compressed backups
B. The AS COMPRESSED clause of the BACKUP command provided by RMAN is used to create compressed backup sets and image copies.
C. Using this command to create backups minimizes the bandwidth consumed
D. Using this command to create backups improves the performance of the backup process

  minimizes the bandwidth consumed(带宽消耗)
  此题考点是备份压缩,可以在 BACKUP 命令中使用 AS COMPRESSED BACKUPSET 子句来进行。
  RMAN 压缩备份集文本是在它们写入到磁盘之前。被使用的详细二进制压缩等级被自动地记录到备份集中。在恢复操作的时候不用显式的指定使用的压缩方式。
例如:
BACKUP
AS COMPRESSED BACKUPSET
DATABASE PLUS ARCHIVELOG;
压缩在备份和重建操作的时候会产生性能开销。二进制压缩消耗 CPU 资源,所以压缩备份需要调度来避开 CPU 使用高峰期。但是以下列情况可以接受性能的开销:
1.你使用磁盘级别的备份,但是目标地点和 FRA 的磁盘受到限制
2.你使用一些设备通过网络进行备份,此时减小带宽消耗比 CPU 使用更重要
3.你使用 CD 或 DVD 介质来进行归档备份,减少备份大小来减少介质开销和归档存储。

posted @ 2017-11-16 15:58  巴啦啦大魔王  阅读(103)  评论(0编辑  收藏  举报