zoukankan      html  css  js  c++  java
  • OCP-1Z0-053-V12.02-149题

    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

    Answer: C
    答案解析:

    Making Compressed Backups

    For any use of the BACKUP command that creates backup sets, you can take advantage of RMAN support for binary compression of backup sets. Specify theAS COMPRESSED BACKUPSET option to the BACKUP command.

    RMAN compresses the backup set contents before writing them to disk. The details of which binary compression level is used are automatically recorded in the backup set. There is no need to explicitly mention the type of compression used or how to decompress the backup set in the recovery operation.

    Example 9-7 backs up the entire database and archived logs to the configured default backup destination (disk or tape), producing compressed backup sets.

    Example 9-7 Making Compressed Backups

    BACKUP
      AS COMPRESSED BACKUPSET
      DATABASE PLUS ARCHIVELOG;

    Binary compression creates some performance overhead during backup and restore operations. Binary compression consumes CPU resources, so compressed backups should not be scheduled when CPU usage is high. However, the following circumstances may warrant paying the performance penalty:

    • You are using disk-based backups when disk space in your fast recovery area or other disk-based backup destination is limited.

    • You are performing your backups to some device over a network when reduced network bandwidth is more important than CPU usage.

    • You are using some archival backup media such as CD or DVD, where reducing backup sizes saves on media costs and archival storage.


       
  • 相关阅读:
    chrome书签插件
    Js箭头函数和lambda
    CSS水平或垂直居中技巧
    前端需要注意的SEO优化
    OpenCV图像识别初探-50行代码教机器玩2D游戏
    机器学习笔记(十一)----降维
    基于Docker搭建分布式消息队列Kafka
    一个经典面试题:如何保证缓存与数据库的双写一致性?
    Flask 蓝图机制及应用
    软件开发团队如何管理琐碎、突发性任务
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316515.html
Copyright © 2011-2022 走看看