ocp-132

来源:互联网 发布:独立的数据集市 编辑:程序博客网 时间:2024/05/06 07:32

QUESTION NO: 132
As DBA for the Rebel Alliance you have decided that you need to facilitate some redundancy in your
database. Using ASM, you want to create a disk group that will provide for the greatest amount of
redundancy for your ASM data (you do not have advanced SAN mirroring technology available to you,
unfortunately). Which of the following commands would create a disk group that would offer the maximum
in data redundancy?
A. CREATE DISKGROUP dg_alliance1 NORMAL REDUNDANCY
failgroup diskcontrol1 DISK ?c:\oracle\asm_disk_file_disk3‘ NAME file_ diska1
failgroup diskcontrol2 DISK
?c:\oracle\asm_disk_file_disk4‘ NAME file_diskb1;
B. CREATE DISKGROUP dg_alliance1 EXTERNAL REDUNDANCY failgroup
diskcontrol1 DISK ‘c:\oracle\asm_disk_file_disk3’ NAME file_ diska1;

D. CREATE DISKGROUP dg_alliance1 MAXIMUM REDUNDANCY
failgroup diskcontrol1 DISK ‘c:\oracle\asm_disk_file_disk1’ NAME file_
disk1
failgroup diskcontrol2 DISK ‘c:\oracle\asm_disk_file_disk2’ NAME file_
disk2
failgroup diskcontrol2 DISK ‘c:\oracle\asm_disk_file_disk3’ NAME file_
disk3
failgroup diskcontrol2 DISK ‘c:\oracle\asm_disk_file_disk4’ NAME file_
disk4;
E. None of the above
Answer: C


作为Rebel Alliance 的DBA, 你已经决定需要在你的数据库中提供一些冗余便利。使用
ASM,您想创建一个磁盘组,将提供最大的冗余量ASM数据( 不幸的是, 你没有先进的SAN镜像技术提供
给你)。以下哪一个命令将创建一个磁盘组,将提供最大的数据冗余?

C. CREATE DISKGROUP dg_alliance1 HIGH REDUNDANCY
failgroup diskcontrol1 DISK ‘c:\oracle\asm_disk_file_disk1’ NAME file_disk1
failgroup diskcontrol2 DISK ‘c:\oracle\asm_disk_file_disk2’ NAME file_disk2
failgroup diskcontrol2 DISK ‘c:\oracle\asm_disk_file_disk3’ NAME file_disk3;

C.创建DG联盟1磁盘组高冗余
故障组的磁盘控制1磁盘“ C: \ ORACLE \ ASM_DISK_file_disk1” 命名文件_磁盘1
故障组的磁盘控制2磁盘“ C: \ ORACLE \ ASM_DISK_file_disk2” 命名文件_磁盘2
故障组的磁盘控制2磁盘“ C: \ ORACLE \ ASM_DISK_file_disk3” 命名文件_磁盘3;


0 0