zoukankan      html  css  js  c++  java
  • OCP-1Z0-053-200题-85题-661

    QUESTION 85

    View the Exhibit and examine the output.

    You execute the following RMAN command to perform thebackup operation:

    RMAN> RUN {

    ALLOCATE CHANNEL c1 DEVICE TYPE disk MAXOPENFILES 8;

    BACKUP DATABASE FILESPERSET 4;

    }

    What is the multiplexing level in the preceding backup process?

    A. 4

    B. 8

    C. 7

    D. 0

    Answer: A

    同661题:http://blog.csdn.net/rlhua/article/details/12165227


    Explanation/Reference:

    Section: Backup, Recovery & Recovery Manager (RMAN)

    The MAXOPENFILES parameter of ALLOCATE CHANNEL or CONFIGURE CHANNEL defines how many

    datafiles RMAN can read from simultaneously. The basic multiplexing algorithm is as follows:

    - Number of files in each backup set

    This number is the minimum of the FILESPERSET setting andthe number of files read by each channel. The

    FILESPERSET default is 64.

    - The level of multiplexing

    This is the number of input files simultaneously read and then written into the same backup piece. Thelevel of

    multiplexing is the minimum of MAXOPENFILES and the number of files in each backup set. The

    MAXOPENFILES default is 8. Suppose that you back up 12 datafiles with one channel when FILEPERSET is

    set to 4. The level of multiplexing is the lesser of this number and 8. Thus, the channel simultaneously writes

    blocks from 4 datafiles into each backup piece. Nowsuppose that you back up 50 datafiles with one channel.

    The number of files in each backup set is 50. The level of multiplexing is the lesser of this number and 8. Thus,

    the channel simultaneously writes blocks from 8 datafiles into each backup piece.

    http://www.filibeto.org/sun/lib/nonsun/oracle/11.1.0.6.0/B28359_01_200708/backup.111/b28270/rcmtunin.htm

    Tuning RMAN Performance

  • 相关阅读:
    SQL统计
    数据库中GETDATE()函数格式化时间
    C#中Math类的计算整数的三种方法
    Excel 导入到Datatable 中,再使用常规方法写入数据库
    C#实现二维码功能,winform 以及 asp.net均可以用
    JPEG、PNG、GIF三者的区别与联系
    javaScript基础知识--变量提升和闭包
    js基础
    js基础知识
    js基础知识
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316034.html
Copyright © 2011-2022 走看看