SlideShare a Scribd company logo
1 of 12
Download to read offline
CCCEEERRRTTT MMMAAAGGGIIICCC
Oracle Database 11g: Administration II
Exam: 1Z0-053
Demo Edition
1Z0-053
1 http://www.certmagic.com
Section 1: Sec One (1 to 20)
Details: Topic 1, Database Architecture and ASM
QUESTION: 1
View the Exhibit and examine the disk groups created at the time of migrating the
database storage to Automatic Storage Management (ASM).
Why does the FRA disk group initially have more free space even though both
DATA and FRA disk groups are provided with the same size?
A. Because the FRA disk group will not support dynamic rebalancing
B. Because the FRA disk group is not configured to support mirroring
C. Because disks in the FRA disk group are not formatted at this stage
D. Because the FRA disk group will support only a single size of allocation unit
Answer: B
QUESTION: 2
You are an Oracle DBA responsible for an ASM instance. The disk controller on
your system fails. You suspect that the disk itself is okay. You know it will take 24
hours to replace the controller and you don't want to have to rebuild the disks from
scratch. What do you do?
A. Take the whole disk group offline and wait for the controller card to be installed.
Once it's installed, bring the disk group online again.
B. Change the ASM parameter ASM_PREFERRED_READ_FAILURE_GROUPS
to indicate that you want to read from the non-failed disk. Once the disk controller
is replaced, reset the parameter to its original value.
C. You have no choice but to rebuild the disk. Drop the disk from the disk group
and wait for the controller to be replaced. Once the controller is replaced, add the
1Z0-053
2 http://www.certmagic.com
disk back into the disk group and allow ASM to rebuild it.
D. If you are using any setting other than REDUNDANCY EXTERNAL for your
disk group, you will have to recover any data on that disk from a backup. The
database will be unavailable until you can correct the problem and perform
recovery.
E. Change the attribute DISK_REPAIR_TIME on the disk group to a time greater
than 24 hours.
Answer: E
QUESTION: 3
You want to perform the following operations for the DATA ASM disk group:
✑ Verify the consistency of the disk.
✑ Cross-check all the file extent maps and allocation tables for consistency.
✑ Check whether the alias metadata directory and file directory are linked
correctly.
✑ Check that ASM metadata directories do not have unreachable allocated blocks.
Which command accomplishes these tasks?
A. ALTER DISKGROUP data CHECK;
B. ALTER DISKGROUP data CHECK DISK;
C. ALTER DISKGROUP data CHECK FILE;
D. ALTER DISKGROUP data CHECK DISK IN FAILURE GROUP 1;
Answer: A
Explanation:
Syntax: ALTER DISKGROUP <disk_group_id> CHECK [REPAIR | NOREPAIR];
The check_diskgroup_clause lets you verify the internal consistency of Oracle
ASM disk group metadata. The disk group must be mounted. Oracle ASM displays
summary errors and writes the details of the detected errors in the alert log.
The CHECK keyword performs the following operations:
✑ Checks the consistency of the disk.
✑ Cross checks all the file extent maps and allocation tables for consistently.
✑ Checks that the alias metadata directory and file directory are linked correctly.
✑ Checks that the alias directory tree is linked correctly.
✑ Checks that Oracle ASM metadata directories do not have unreachable allocated
blocks.
Refer to here
1Z0-053
3 http://www.certmagic.com
QUESTION: 4
A database instance is using an Automatic Storage Management (ASM) instance,
which has a disk group, DGROUP1, created as follows:
SQL> CREATE DISKGROUP dgroup1 NORMAL REDUNDANCY
FAILGROUP controller1 DISK '/devices/diska1', '/devices/diska2' FAILGROUP
controller2 DISK '/devices/diskb1', '/devices/diskb2';
What happens when the whole CONTROLLER1 Failure group is damaged?
A. The transactions that use the disk group will halt.
B. The mirroring of allocation units occurs within the CONTROLLER2 failure
group.
C. The data in the CONTROLLER1 failure group is shifted to the CONTROLLER2
failure group and implicit rebalancing is triggered.
D. The ASM does not mirror any data and newly allocated primary allocation units
(AU) are stored in the CONTROLLER2 failure group.
Answer: C
QUESTION: 5
If you use ALTER DISKGROUP ... ADD DISK and specify a wildcard for the
discovery string, what happens to disks that are already a part of the same or
another disk group?
A. The command fails unless you specify the FORCE option.
B. The command fails unless you specify the REUSE option.
C. The command must be reissued with a more specific discovery string.
D. The other disks, already part of the disk group, are ignored.
Answer: C
Explanation:
Refer to an Oracle Example for adding disk to diskgroup (link) How A Disk is
Discovered While an ASM instance is initialized, ASM discovers and examines the
contents of all of the disks that are in the paths that you designated with values in
the ASM_DISKSTRING initialization parameter. Disk discovery also occurs when
you:
✑ Run the ALTER DISKGROUP...ADD DISK and ALTER
DISKGROUP...RESIZE
DISK commands
✑ Query the V$ASM_DISKGROUP and V$ASM_DISK views
Disk Discovery Rules(link)
The rules for discovering ASM disks are as follows:
Note:
✑ ASM can discover up to 10,000 disks. That is, if more than 10,000 disks match
1Z0-053
4 http://www.certmagic.com
the ASM_DISKSTRING initialization parameter, then ASM discovers only the first
10,000.
✑ ASM only discovers disks that contain a partition table.
ASM does not discover a disk that contains an operating system partition table,
even if the disk is in an ASM disk string search path and ASM has read and write
permission for the disk.
✑ When adding a disk, the FORCE option must be used if ASM recognizes that the
disk was managed by Oracle. Such a disk appears in the V$ASM_DISK view with
a status of FOREIGN. In this case, you can only add the disk to a disk group by
using the FORCE keyword.
In addition, ASM identifies the following configuration errors during discovery:
✑ Multiple paths to the same disk
In this case, if the disk is part of a disk group, then disk group mount fails. If the
disk is being added to a disk group with the ADD DISK or CREATE DISKGROUP
command, then the command fails. To correct the error, adjust the
ASM_DISKSTRING value so that ASM will not discover multiple paths to the
same disk. Or if you are using multipathing software, then ensure that you include
only the pseudo-device name in the ASM_DISKSTRING value. See "ASM and
Multipathing".
✑ Multiple ASM disks with the same disk header
This can be caused by having copied one disk onto another. In this case, the disk
group mount operation fails.
QUESTION: 6
Examine the following ALTER command;
SQL> ALTER DISKGROUP dgroup1 UNDROP DISKS;
What is the purpose of the command?
A. It cancels all pending disk drops within the disk group.
B. It adds previously dropped disks back into the disk group.
C. It restores disks that are being dropped as the result of a DROP DISKGROUP
operation.
D. It mounts disks in the disk group for which the drop-disk operation has already
been completed.
E. It restores all the dropped disks in the disk group for which the drop-disk
operation has already been completed.
Answer: A
Explanation:
The key point is PENDING.
QUESTION: 7
You are managing an Oracle Database 11g database with the ASM storage. The
database is having big file tablespaces. You want files to open faster and less
1Z0-053
5 http://www.certmagic.com
memory to be used in the shared pool to manage the extent maps. What
configuration would you effect to achieve your objective? (Choose all that apply.)
A. Set the ASM compatibility attribute for the ASM disk group to 11.1.0.
B. Set the RDBMS compatibility attribute for the ASM disk group to 11.1.0.
C. Set the COMPATIBLE initialization parameter for the ASM instance to 11.1.0.
D. Set the COMPATIBLE initialization parameter for the database instance to
11.1.0.
Answer: A, D
QUESTION: 8
What is the net effect of the following command? alter diskgroup dgroup1 drop disk
abc;
A. The disk ABC will be dropped from the disk group. Since you did not issue a
rebalance command, the data on that disk will be lost.
B. The command will raise an error indicating that you need to rebalance the disk
group to remove the data from that disk prior to dropping the disk.
C. The disk group will be automatically rebalanced during the drop operation. Once
the rebalancing is complete, the disk will be dropped.
D. This command will fail because you cannot drop a specific disk in an ASM disk
group.
E. The disk drop command will be suspended for a predetermined amount of time,
waiting for you to also issue an alter diskgroup rebalance command. Once you have
issued the rebalance command, ASM will proceed to rebalance the disk group and
then drop the disk.
Answer: C
QUESTION: 9
You are managing an Oracle Database 11g instance with ASM storage. You lost an
ASM disk group DATA. You have RMAN backup of data as well as ASM
metadata backup. You want to re-create the missing disk group by using the
ASMCMD md_restore command. Which of these methods would you use to
achieve this? (Choose all that apply.)
A. Restore the disk group with the exact configuration as the backed-up disk group,
using the same disk group name, same set of disks, failure group configurations,
and data on the disk group.
B. Restore the disk group with the exact configuration as the backed-up disk group,
using the same disk group name, same set of disks, and failure group
1Z0-053
6 http://www.certmagic.com
configurations.
C. Restore the disk group with changed disk group specification, failure group
specification, disk group name, and other disk attributes.
D. Restore metadata in an existing disk group by passing the existing disk group
name as an input parameter.
Answer: B, C, D
Explanation: Purpose
The md_restore command restores disk groups from a metadata backup file.
Syntax and Description
md_restore backup_file [--silent]
[--full|--nodg|--newdg -o 'old_diskgroup:new_diskgroup [,...]'] [-S sql_script_file] [-
G 'diskgroup [,diskgroup...]']
backup_file
Reads the metadata information from backup_file.
--silent
Ignore errors. Typically, if md_restore encounters an error, it stops. Specifying this
flag ignores any errors.
--full
Specifies to create a disk group and restore metadata.
--nodg
Specifies to restore metadata only.
--newdg -o old_diskgroup:new_diskgroup]
Specifies to create a disk group with a different name when restoring metadata. The
-o option is required with
--newdg.
-S sql_script_file
Write SQL commands to the specified SQL script file instead of executing the
commands.
-G diskgroup
Select the disk groups to be restored. If no disk groups are defined, then all disk
groups are restored.
QUESTION: 10
You issued the following command: CREATE GLOBAL TEMPORARY TABLE
admin_work_area (startdate DATE, enddate DATE, class CHAR(20))
ON COMMIT DELETE ROWS TABLESPACE tbs_t1;
An index is then created on the ADMIN_WORK_AREA temporary table.
Which two statements are true regarding the TBS_T1 tablespace in the above
command? (Choose two.)
A. It stores only the temporary table but not its indexes.
B. It stores both the temporary table as well as its indexes.
C. It must be a nondefault temporary tablespace for the database.
D. It can be a default or nondefault temporary tablespace for the database.
1Z0-053
7 http://www.certmagic.com
E. It must be the default temporary tablespace of the user who issues the command.
Answer: B, D
QUESTION: 11
The following command is executed to shut down an Automatic Storage
Management (ASM) instance:
SQL>SHUTDOWN ABORT;
Which two statements describe the consequences of the above command? (Choose
two.)
A. The disk groups are orderly dismounted.
B. The ASM instance requires recovery when it is started.
C. The database instance that are currently clients of the ASM instance are aborted.
D. The CSS daemon stops and has to be restarted before the ASM instance is
restarted.
Answer: B, C
QUESTION: 12
Which of the following is not a configurable attribute for an individual disk group?
A. AU_SIZE
B. COMPATIBLE.RDBMS
C. COMPATIBLE.ASM
D. DISK_REPAIR_TIME
E. DG_DROP_TIME
Answer: E
Explanation:
DG_DROP_TIME is an invalid DG attribute. Disk Group Attributes
The DISK_REPAIR_TIME disk group attribute specifies how long a disk remains
offline before ASM drops the disk.
The COMPATIBLE.ASM attribute determines the minimum software version for
an ASM instance that uses the disk group.
The COMPATIBLE.RDBMS attribute determines the minimum COMPATIBLE
database initialization parameter setting for any database instance that uses the disk
group.
The AU_SIZE attribute determines the allocation unit size of the disk group. The
values can be 1, 2, 4, 8, 16, 32, and 64 MB.
1Z0-053
8 http://www.certmagic.com
QUESTION: 13
You are managing an Oracle Database 11g ASM instance with a disk group dg01
having three disks. One of the disks in the disk group becomes unavailable because
of power failure. You issued the following command to change the
DISK_REPAIR_TIME attribute from 3.6 hours to 5 hours:
ALTER DISKGROUP dg01 SET ATTRIBUTE 'disk_repair_time' = '5h'; To which
disks in the disk group will the new value be applicable?
A. all disks in the disk group
B. all disks that are currently in OFFLINE mode
C. all disks that are not currently in OFFLINE mode
D. all disks in the disk group only if all of them are ONLINE
Answer: C
Explanation:
Check out the answer options, it is tricky. The NOT OFFLINE disks equals
ONLINE disks. Refer to Set the DISK_REPAIR_TIME Disk Group Attribute
Appropriately.
The DISK_REPAIR_TIME disk group attribute specifies how long a disk remains
offline before Oracle ASM drops the disk. If a disk is made available before the
DISK_REPAIR_TIME parameter has expired, the storage administrator can issue
the ONLINE DISK command and Oracle ASM resynchronizes the stale data from
the mirror side. In Oracle Database 11g, the online disk operation does not restart if
there is a failure of the instance on which the disk is running. You must reissue the
command manually to bring the disk online.
QUESTION: 14
You are managing an Oracle Database 11g database with ASM storage. The ASM
disk group has the COMPATIBLE.ASM attribute set to 11.1. Which statements are
true regarding extent management and allocation units in the ASM disk group?
(Choose all that apply.)
A. The au_size disk group attribute determines the size of allocation units in the
disk group.
B. The allocation unit size may vary but the extent size is fixed.
C. The allocation unit size and extent size are fixed for all the disks in a disk group
and cannot be changed.
D. Extent management is completely automated.
Answer: A, D
1Z0-053
9 http://www.certmagic.com
QUESTION: 15
As DBA for the Rebalance, 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. Option A
B. Option B
C. Option C
D. Option D
E. Option E
Answer: C
Explanation:
No SAN mirroring available means no external redundancy available.
The highest redundancy of ASM is the HIGH redundancy with 3 mirror copies.
QUESTION: 16
You have three production databases, HRDB, FINDB, and ORGDB, that use the
same ASM instance. At the end of the day, while all three production database
instances are running, you execute the following command on the ASM instance:
SQL> shutdown immediate; What is the result of executing this command?
A. The ASM instance is shut down, but the other instances are still running.
B. It results in an error because other database instances are connected to it.
C. All the instances, including the ASM instance, are shut down in the
IMMEDIATE mode.
D. HRDB, FINDB, and ORGDB instances are shut down in the ABORT mode and
the ASM instance is shut down in the IMMEDIATE mode.
1Z0-053
10 http://www.certmagic.com
Answer: B
QUESTION: 17
You are managing an Oracle 11g database with ASM storage, for which the
COMPATIBLE initialization parameter is set to 11.1.0. In the ASM instance, the
COMPATIBLE.RDBMS attribute for the disk group is set to 10.2 and the
COMPATIBLE.ASM attribute is set to 11.1. Which two statements are true in this
scenario for the features enabled for ASM? (Choose two.)
A. The ASM-preferred mirror read feature is enabled.
B. The ASM supports variable sizes for extents of 1, 8, and 64 allocation units.
C. The ASM disk is dropped immediately from a disk group when it becomes
unavailable.
D. The RDBMS always reads the primary copy of a mirrored extent of the ASM
disk group.
Answer: A, B
QUESTION: 18
You issued the following command to mount the DATA disk group in restricted
mode: ALTER DISKGROUP data MOUNT RESTRICT; What is the implication of
this command?
A. The client RDBMS instance can access the file as a read-only file.
B. A new disk cannot be added to a disk group.
C. A disk in a disk group can be taken offline.
D. The client RDBMS instance cannot access the files in the disk group.
Answer: D
Explanation:
MOUNT (link)
Specify MOUNT to mount the disk groups in the local Oracle ASM instance.
Specify ALL MOUNT to mount all disk groups specified in the
ASM_DISKGROUPS initialization parameter. File operations can only be
performed when a disk group is mounted. If Oracle ASM is running in a cluster or a
standalone server managed by Oracle Restart, then the MOUNT clause
automatically brings the corresponding resource online.
RESTRICTED | NORMAL Use these clauses to determine the manner in which the
disk groups are mounted.
In the RESTRICTED mode, the disk group is mounted in single-instance exclusive
mode. No other Oracle ASM instance in the same cluster can mount that disk
group. In this mode the disk group is not usable by any Oracle ASM client.
1Z0-053
11 http://www.certmagic.com
In the NORMAL mode, the disk group is mounted in shared mode, so that other
Oracle ASM instances and clients can access the disk group. This is the default.
QUESTION: 19
Your database is using a default temporary tablespace that contains the temp01.tmp
temporary file. All the users on the database use the default temporary tablspace. A
user issues a query on the ORDERS table and receives the following error:
ERROR at line 1:
ORA-01565: error in identifying file '/u01/app/oracle/oradata/TEST/temp01.tmp'
ORA-27037: unable to obtain file status What would be the most efficient way to
rectify this error? ##
A. Add a new tempfile to the user's temporary tablespace and drop the tempfile that
produced the error.
B. Shut down the database instance, restore the temp01.tmp file from the backup,
and then restart the database.
C. Allow the database to continue running, drop the temp01.tmp temporary file, and
then re-create it with new tempfiles.
D. Take the temporary tablespace offline, recover the missing tempfile by applying
redo logs, and then bring the temporary tablespace online.
Answer: A
QUESTION: 20
What is the proper command to shut down the database in a consistent manner?
A. shutdown abort
B. shutdown kill
C. shutdown nowait
D. shutdown immediate
E. shutdown halt
Answer: D
1Z0-053
12 http://www.certmagic.com

More Related Content

What's hot

Automatic Storage Management (ASM) metrics are a goldmine: Let's use them!
Automatic Storage Management (ASM) metrics are a goldmine: Let's use them!Automatic Storage Management (ASM) metrics are a goldmine: Let's use them!
Automatic Storage Management (ASM) metrics are a goldmine: Let's use them!BertrandDrouvot
 
Oracle applications 11i hot backup cloning with rapid clone
Oracle applications 11i hot backup cloning with rapid cloneOracle applications 11i hot backup cloning with rapid clone
Oracle applications 11i hot backup cloning with rapid cloneDeepti Singh
 
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linuxUpgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linuxmaclean liu
 
FIXING BLOCK CORRUPTION (RMAN) on 11G
FIXING BLOCK CORRUPTION (RMAN) on 11GFIXING BLOCK CORRUPTION (RMAN) on 11G
FIXING BLOCK CORRUPTION (RMAN) on 11GN/A
 
Basic - Oracle Edition Based Redefinition Presentation
Basic - Oracle Edition Based Redefinition PresentationBasic - Oracle Edition Based Redefinition Presentation
Basic - Oracle Edition Based Redefinition PresentationN/A
 
MySQL Document Store
MySQL Document StoreMySQL Document Store
MySQL Document StoreI Goo Lee
 
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1Raheel Syed
 
Oracle Exadata Exam Dump
Oracle Exadata Exam DumpOracle Exadata Exam Dump
Oracle Exadata Exam DumpPooja C
 
MySql 5.7 Backup Script
MySql 5.7 Backup ScriptMySql 5.7 Backup Script
MySql 5.7 Backup ScriptHızlan ERPAK
 
Oracle Database 11g Product Family
Oracle Database 11g Product FamilyOracle Database 11g Product Family
Oracle Database 11g Product FamilyN/A
 
Install and upgrade Oracle grid infrastructure 12.1.0.2
Install and upgrade Oracle grid infrastructure 12.1.0.2Install and upgrade Oracle grid infrastructure 12.1.0.2
Install and upgrade Oracle grid infrastructure 12.1.0.2Biju Thomas
 
Managing Exadata in the Real World
Managing Exadata in the Real WorldManaging Exadata in the Real World
Managing Exadata in the Real WorldEnkitec
 
MySQL InnoDB Cluster 미리보기 (remote cluster test)
MySQL InnoDB Cluster 미리보기 (remote cluster test)MySQL InnoDB Cluster 미리보기 (remote cluster test)
MySQL InnoDB Cluster 미리보기 (remote cluster test)Seungmin Yu
 
Enterprise Manager Cloud Control 12c Release 4 - Installation
Enterprise Manager Cloud Control 12c Release 4 - InstallationEnterprise Manager Cloud Control 12c Release 4 - Installation
Enterprise Manager Cloud Control 12c Release 4 - InstallationIvica Arsov
 
Optimizer Cost Model MySQL 5.7
Optimizer Cost Model MySQL 5.7Optimizer Cost Model MySQL 5.7
Optimizer Cost Model MySQL 5.7I Goo Lee
 
Rhel asmlib to_udev
Rhel asmlib to_udevRhel asmlib to_udev
Rhel asmlib to_udevMohsen B
 
Postgresql quick guide
Postgresql quick guidePostgresql quick guide
Postgresql quick guideAshoka Vanjare
 

What's hot (20)

Beginbackup
BeginbackupBeginbackup
Beginbackup
 
Automatic Storage Management (ASM) metrics are a goldmine: Let's use them!
Automatic Storage Management (ASM) metrics are a goldmine: Let's use them!Automatic Storage Management (ASM) metrics are a goldmine: Let's use them!
Automatic Storage Management (ASM) metrics are a goldmine: Let's use them!
 
Oracle applications 11i hot backup cloning with rapid clone
Oracle applications 11i hot backup cloning with rapid cloneOracle applications 11i hot backup cloning with rapid clone
Oracle applications 11i hot backup cloning with rapid clone
 
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linuxUpgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
Upgrade 11.2.0.1 gi crs to 11.2.0.2 in linux
 
FIXING BLOCK CORRUPTION (RMAN) on 11G
FIXING BLOCK CORRUPTION (RMAN) on 11GFIXING BLOCK CORRUPTION (RMAN) on 11G
FIXING BLOCK CORRUPTION (RMAN) on 11G
 
Basic - Oracle Edition Based Redefinition Presentation
Basic - Oracle Edition Based Redefinition PresentationBasic - Oracle Edition Based Redefinition Presentation
Basic - Oracle Edition Based Redefinition Presentation
 
MySQL Document Store
MySQL Document StoreMySQL Document Store
MySQL Document Store
 
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
Upgrade 10204-to-10205 on-2-node_rac_linux_x86_64_detail-steps_v0.1
 
Oracle Exadata Exam Dump
Oracle Exadata Exam DumpOracle Exadata Exam Dump
Oracle Exadata Exam Dump
 
MySql 5.7 Backup Script
MySql 5.7 Backup ScriptMySql 5.7 Backup Script
MySql 5.7 Backup Script
 
Oracle Database 11g Product Family
Oracle Database 11g Product FamilyOracle Database 11g Product Family
Oracle Database 11g Product Family
 
Install and upgrade Oracle grid infrastructure 12.1.0.2
Install and upgrade Oracle grid infrastructure 12.1.0.2Install and upgrade Oracle grid infrastructure 12.1.0.2
Install and upgrade Oracle grid infrastructure 12.1.0.2
 
Managing Exadata in the Real World
Managing Exadata in the Real WorldManaging Exadata in the Real World
Managing Exadata in the Real World
 
MySQL InnoDB Cluster 미리보기 (remote cluster test)
MySQL InnoDB Cluster 미리보기 (remote cluster test)MySQL InnoDB Cluster 미리보기 (remote cluster test)
MySQL InnoDB Cluster 미리보기 (remote cluster test)
 
Db health check
Db health checkDb health check
Db health check
 
Enterprise Manager Cloud Control 12c Release 4 - Installation
Enterprise Manager Cloud Control 12c Release 4 - InstallationEnterprise Manager Cloud Control 12c Release 4 - Installation
Enterprise Manager Cloud Control 12c Release 4 - Installation
 
Optimizer Cost Model MySQL 5.7
Optimizer Cost Model MySQL 5.7Optimizer Cost Model MySQL 5.7
Optimizer Cost Model MySQL 5.7
 
Oracle backup
Oracle backupOracle backup
Oracle backup
 
Rhel asmlib to_udev
Rhel asmlib to_udevRhel asmlib to_udev
Rhel asmlib to_udev
 
Postgresql quick guide
Postgresql quick guidePostgresql quick guide
Postgresql quick guide
 

Similar to Exam 1Z0-053 Oracle Database 11g: Administration II

10g rac asm
10g rac asm10g rac asm
10g rac asmVictor
 
O Racle Asm Best Practices Presentation
O Racle Asm Best Practices PresentationO Racle Asm Best Practices Presentation
O Racle Asm Best Practices Presentationeraz
 
3 configuring basic and dynamic disks
3 configuring basic and dynamic disks3 configuring basic and dynamic disks
3 configuring basic and dynamic disksHameda Hurmat
 
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software ReleaseIsabella789
 
RAC+ASM: Stories to Share
RAC+ASM: Stories to ShareRAC+ASM: Stories to Share
RAC+ASM: Stories to Sharekutrovsky
 
disk structure and multiple RAID levels .ppt
disk structure and multiple  RAID levels .pptdisk structure and multiple  RAID levels .ppt
disk structure and multiple RAID levels .pptRAJASEKHARV10
 
Mid term &amp; final- preparation- student-review(Oracle)
Mid term &amp; final- preparation- student-review(Oracle)Mid term &amp; final- preparation- student-review(Oracle)
Mid term &amp; final- preparation- student-review(Oracle)than sare
 
Create Diskgroup Sqlplus Command
Create Diskgroup Sqlplus CommandCreate Diskgroup Sqlplus Command
Create Diskgroup Sqlplus CommandArun Sharma
 
Exadata master series_asm_2020
Exadata master series_asm_2020Exadata master series_asm_2020
Exadata master series_asm_2020Anil Nair
 
General commands for navisphere cli
General commands for navisphere cliGeneral commands for navisphere cli
General commands for navisphere climsaleh1234
 
I/O System and Csae Study
I/O System and Csae StudyI/O System and Csae Study
I/O System and Csae Studypalpandi it
 
Exam 1z0 062 Oracle Database 12c: Installation and Administration
Exam 1z0 062 Oracle Database 12c: Installation and AdministrationExam 1z0 062 Oracle Database 12c: Installation and Administration
Exam 1z0 062 Oracle Database 12c: Installation and AdministrationKylieJonathan
 
Tsm ad restore
Tsm ad restoreTsm ad restore
Tsm ad restoresuwit
 
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocpIsabella789
 

Similar to Exam 1Z0-053 Oracle Database 11g: Administration II (20)

Les 01 Arch
Les 01 ArchLes 01 Arch
Les 01 Arch
 
10g rac asm
10g rac asm10g rac asm
10g rac asm
 
O Racle Asm Best Practices Presentation
O Racle Asm Best Practices PresentationO Racle Asm Best Practices Presentation
O Racle Asm Best Practices Presentation
 
3 configuring basic and dynamic disks
3 configuring basic and dynamic disks3 configuring basic and dynamic disks
3 configuring basic and dynamic disks
 
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
 
Oracle ASM Training
Oracle ASM TrainingOracle ASM Training
Oracle ASM Training
 
RAC+ASM: Stories to Share
RAC+ASM: Stories to ShareRAC+ASM: Stories to Share
RAC+ASM: Stories to Share
 
disk structure and multiple RAID levels .ppt
disk structure and multiple  RAID levels .pptdisk structure and multiple  RAID levels .ppt
disk structure and multiple RAID levels .ppt
 
Mid term &amp; final- preparation- student-review(Oracle)
Mid term &amp; final- preparation- student-review(Oracle)Mid term &amp; final- preparation- student-review(Oracle)
Mid term &amp; final- preparation- student-review(Oracle)
 
Vx vm
Vx vmVx vm
Vx vm
 
Create Diskgroup Sqlplus Command
Create Diskgroup Sqlplus CommandCreate Diskgroup Sqlplus Command
Create Diskgroup Sqlplus Command
 
RAC.docx
RAC.docxRAC.docx
RAC.docx
 
Exadata master series_asm_2020
Exadata master series_asm_2020Exadata master series_asm_2020
Exadata master series_asm_2020
 
Os
OsOs
Os
 
General commands for navisphere cli
General commands for navisphere cliGeneral commands for navisphere cli
General commands for navisphere cli
 
I/O System and Csae Study
I/O System and Csae StudyI/O System and Csae Study
I/O System and Csae Study
 
Palpandi
PalpandiPalpandi
Palpandi
 
Exam 1z0 062 Oracle Database 12c: Installation and Administration
Exam 1z0 062 Oracle Database 12c: Installation and AdministrationExam 1z0 062 Oracle Database 12c: Installation and Administration
Exam 1z0 062 Oracle Database 12c: Installation and Administration
 
Tsm ad restore
Tsm ad restoreTsm ad restore
Tsm ad restore
 
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
 

More from Ellina Beckman

Rh202 q&amp;a-demo-cert magic
Rh202 q&amp;a-demo-cert magicRh202 q&amp;a-demo-cert magic
Rh202 q&amp;a-demo-cert magicEllina Beckman
 
1 z0 550-q&amp;a-demo-certmagic
1 z0 550-q&amp;a-demo-certmagic1 z0 550-q&amp;a-demo-certmagic
1 z0 550-q&amp;a-demo-certmagicEllina Beckman
 
9 a0 386-q&amp;a-demo-certmagic
9 a0 386-q&amp;a-demo-certmagic9 a0 386-q&amp;a-demo-certmagic
9 a0 386-q&amp;a-demo-certmagicEllina Beckman
 
Pmi acp-q&amp;a-demo-cert magic
Pmi acp-q&amp;a-demo-cert magicPmi acp-q&amp;a-demo-cert magic
Pmi acp-q&amp;a-demo-cert magicEllina Beckman
 
Adobe Experience Manager 6.0 Developer Exam
Adobe Experience Manager 6.0 Developer ExamAdobe Experience Manager 6.0 Developer Exam
Adobe Experience Manager 6.0 Developer ExamEllina Beckman
 
Exam-MB0-001 CompTIA Mobility+
Exam-MB0-001 CompTIA Mobility+Exam-MB0-001 CompTIA Mobility+
Exam-MB0-001 CompTIA Mobility+Ellina Beckman
 
70 246-q&amp;a-demo-self examengine
70 246-q&amp;a-demo-self examengine70 246-q&amp;a-demo-self examengine
70 246-q&amp;a-demo-self examengineEllina Beckman
 
Architecting HP FlexNetwork Solutions
Architecting HP FlexNetwork SolutionsArchitecting HP FlexNetwork Solutions
Architecting HP FlexNetwork SolutionsEllina Beckman
 
Certified Associate in Project Management
Certified Associate in Project ManagementCertified Associate in Project Management
Certified Associate in Project ManagementEllina Beckman
 

More from Ellina Beckman (9)

Rh202 q&amp;a-demo-cert magic
Rh202 q&amp;a-demo-cert magicRh202 q&amp;a-demo-cert magic
Rh202 q&amp;a-demo-cert magic
 
1 z0 550-q&amp;a-demo-certmagic
1 z0 550-q&amp;a-demo-certmagic1 z0 550-q&amp;a-demo-certmagic
1 z0 550-q&amp;a-demo-certmagic
 
9 a0 386-q&amp;a-demo-certmagic
9 a0 386-q&amp;a-demo-certmagic9 a0 386-q&amp;a-demo-certmagic
9 a0 386-q&amp;a-demo-certmagic
 
Pmi acp-q&amp;a-demo-cert magic
Pmi acp-q&amp;a-demo-cert magicPmi acp-q&amp;a-demo-cert magic
Pmi acp-q&amp;a-demo-cert magic
 
Adobe Experience Manager 6.0 Developer Exam
Adobe Experience Manager 6.0 Developer ExamAdobe Experience Manager 6.0 Developer Exam
Adobe Experience Manager 6.0 Developer Exam
 
Exam-MB0-001 CompTIA Mobility+
Exam-MB0-001 CompTIA Mobility+Exam-MB0-001 CompTIA Mobility+
Exam-MB0-001 CompTIA Mobility+
 
70 246-q&amp;a-demo-self examengine
70 246-q&amp;a-demo-self examengine70 246-q&amp;a-demo-self examengine
70 246-q&amp;a-demo-self examengine
 
Architecting HP FlexNetwork Solutions
Architecting HP FlexNetwork SolutionsArchitecting HP FlexNetwork Solutions
Architecting HP FlexNetwork Solutions
 
Certified Associate in Project Management
Certified Associate in Project ManagementCertified Associate in Project Management
Certified Associate in Project Management
 

Recently uploaded

Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 

Recently uploaded (20)

Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 

Exam 1Z0-053 Oracle Database 11g: Administration II

  • 1. CCCEEERRRTTT MMMAAAGGGIIICCC Oracle Database 11g: Administration II Exam: 1Z0-053 Demo Edition 1Z0-053 1 http://www.certmagic.com
  • 2. Section 1: Sec One (1 to 20) Details: Topic 1, Database Architecture and ASM QUESTION: 1 View the Exhibit and examine the disk groups created at the time of migrating the database storage to Automatic Storage Management (ASM). Why does the FRA disk group initially have more free space even though both DATA and FRA disk groups are provided with the same size? A. Because the FRA disk group will not support dynamic rebalancing B. Because the FRA disk group is not configured to support mirroring C. Because disks in the FRA disk group are not formatted at this stage D. Because the FRA disk group will support only a single size of allocation unit Answer: B QUESTION: 2 You are an Oracle DBA responsible for an ASM instance. The disk controller on your system fails. You suspect that the disk itself is okay. You know it will take 24 hours to replace the controller and you don't want to have to rebuild the disks from scratch. What do you do? A. Take the whole disk group offline and wait for the controller card to be installed. Once it's installed, bring the disk group online again. B. Change the ASM parameter ASM_PREFERRED_READ_FAILURE_GROUPS to indicate that you want to read from the non-failed disk. Once the disk controller is replaced, reset the parameter to its original value. C. You have no choice but to rebuild the disk. Drop the disk from the disk group and wait for the controller to be replaced. Once the controller is replaced, add the 1Z0-053 2 http://www.certmagic.com
  • 3. disk back into the disk group and allow ASM to rebuild it. D. If you are using any setting other than REDUNDANCY EXTERNAL for your disk group, you will have to recover any data on that disk from a backup. The database will be unavailable until you can correct the problem and perform recovery. E. Change the attribute DISK_REPAIR_TIME on the disk group to a time greater than 24 hours. Answer: E QUESTION: 3 You want to perform the following operations for the DATA ASM disk group: ✑ Verify the consistency of the disk. ✑ Cross-check all the file extent maps and allocation tables for consistency. ✑ Check whether the alias metadata directory and file directory are linked correctly. ✑ Check that ASM metadata directories do not have unreachable allocated blocks. Which command accomplishes these tasks? A. ALTER DISKGROUP data CHECK; B. ALTER DISKGROUP data CHECK DISK; C. ALTER DISKGROUP data CHECK FILE; D. ALTER DISKGROUP data CHECK DISK IN FAILURE GROUP 1; Answer: A Explanation: Syntax: ALTER DISKGROUP <disk_group_id> CHECK [REPAIR | NOREPAIR]; The check_diskgroup_clause lets you verify the internal consistency of Oracle ASM disk group metadata. The disk group must be mounted. Oracle ASM displays summary errors and writes the details of the detected errors in the alert log. The CHECK keyword performs the following operations: ✑ Checks the consistency of the disk. ✑ Cross checks all the file extent maps and allocation tables for consistently. ✑ Checks that the alias metadata directory and file directory are linked correctly. ✑ Checks that the alias directory tree is linked correctly. ✑ Checks that Oracle ASM metadata directories do not have unreachable allocated blocks. Refer to here 1Z0-053 3 http://www.certmagic.com
  • 4. QUESTION: 4 A database instance is using an Automatic Storage Management (ASM) instance, which has a disk group, DGROUP1, created as follows: SQL> CREATE DISKGROUP dgroup1 NORMAL REDUNDANCY FAILGROUP controller1 DISK '/devices/diska1', '/devices/diska2' FAILGROUP controller2 DISK '/devices/diskb1', '/devices/diskb2'; What happens when the whole CONTROLLER1 Failure group is damaged? A. The transactions that use the disk group will halt. B. The mirroring of allocation units occurs within the CONTROLLER2 failure group. C. The data in the CONTROLLER1 failure group is shifted to the CONTROLLER2 failure group and implicit rebalancing is triggered. D. The ASM does not mirror any data and newly allocated primary allocation units (AU) are stored in the CONTROLLER2 failure group. Answer: C QUESTION: 5 If you use ALTER DISKGROUP ... ADD DISK and specify a wildcard for the discovery string, what happens to disks that are already a part of the same or another disk group? A. The command fails unless you specify the FORCE option. B. The command fails unless you specify the REUSE option. C. The command must be reissued with a more specific discovery string. D. The other disks, already part of the disk group, are ignored. Answer: C Explanation: Refer to an Oracle Example for adding disk to diskgroup (link) How A Disk is Discovered While an ASM instance is initialized, ASM discovers and examines the contents of all of the disks that are in the paths that you designated with values in the ASM_DISKSTRING initialization parameter. Disk discovery also occurs when you: ✑ Run the ALTER DISKGROUP...ADD DISK and ALTER DISKGROUP...RESIZE DISK commands ✑ Query the V$ASM_DISKGROUP and V$ASM_DISK views Disk Discovery Rules(link) The rules for discovering ASM disks are as follows: Note: ✑ ASM can discover up to 10,000 disks. That is, if more than 10,000 disks match 1Z0-053 4 http://www.certmagic.com
  • 5. the ASM_DISKSTRING initialization parameter, then ASM discovers only the first 10,000. ✑ ASM only discovers disks that contain a partition table. ASM does not discover a disk that contains an operating system partition table, even if the disk is in an ASM disk string search path and ASM has read and write permission for the disk. ✑ When adding a disk, the FORCE option must be used if ASM recognizes that the disk was managed by Oracle. Such a disk appears in the V$ASM_DISK view with a status of FOREIGN. In this case, you can only add the disk to a disk group by using the FORCE keyword. In addition, ASM identifies the following configuration errors during discovery: ✑ Multiple paths to the same disk In this case, if the disk is part of a disk group, then disk group mount fails. If the disk is being added to a disk group with the ADD DISK or CREATE DISKGROUP command, then the command fails. To correct the error, adjust the ASM_DISKSTRING value so that ASM will not discover multiple paths to the same disk. Or if you are using multipathing software, then ensure that you include only the pseudo-device name in the ASM_DISKSTRING value. See "ASM and Multipathing". ✑ Multiple ASM disks with the same disk header This can be caused by having copied one disk onto another. In this case, the disk group mount operation fails. QUESTION: 6 Examine the following ALTER command; SQL> ALTER DISKGROUP dgroup1 UNDROP DISKS; What is the purpose of the command? A. It cancels all pending disk drops within the disk group. B. It adds previously dropped disks back into the disk group. C. It restores disks that are being dropped as the result of a DROP DISKGROUP operation. D. It mounts disks in the disk group for which the drop-disk operation has already been completed. E. It restores all the dropped disks in the disk group for which the drop-disk operation has already been completed. Answer: A Explanation: The key point is PENDING. QUESTION: 7 You are managing an Oracle Database 11g database with the ASM storage. The database is having big file tablespaces. You want files to open faster and less 1Z0-053 5 http://www.certmagic.com
  • 6. memory to be used in the shared pool to manage the extent maps. What configuration would you effect to achieve your objective? (Choose all that apply.) A. Set the ASM compatibility attribute for the ASM disk group to 11.1.0. B. Set the RDBMS compatibility attribute for the ASM disk group to 11.1.0. C. Set the COMPATIBLE initialization parameter for the ASM instance to 11.1.0. D. Set the COMPATIBLE initialization parameter for the database instance to 11.1.0. Answer: A, D QUESTION: 8 What is the net effect of the following command? alter diskgroup dgroup1 drop disk abc; A. The disk ABC will be dropped from the disk group. Since you did not issue a rebalance command, the data on that disk will be lost. B. The command will raise an error indicating that you need to rebalance the disk group to remove the data from that disk prior to dropping the disk. C. The disk group will be automatically rebalanced during the drop operation. Once the rebalancing is complete, the disk will be dropped. D. This command will fail because you cannot drop a specific disk in an ASM disk group. E. The disk drop command will be suspended for a predetermined amount of time, waiting for you to also issue an alter diskgroup rebalance command. Once you have issued the rebalance command, ASM will proceed to rebalance the disk group and then drop the disk. Answer: C QUESTION: 9 You are managing an Oracle Database 11g instance with ASM storage. You lost an ASM disk group DATA. You have RMAN backup of data as well as ASM metadata backup. You want to re-create the missing disk group by using the ASMCMD md_restore command. Which of these methods would you use to achieve this? (Choose all that apply.) A. Restore the disk group with the exact configuration as the backed-up disk group, using the same disk group name, same set of disks, failure group configurations, and data on the disk group. B. Restore the disk group with the exact configuration as the backed-up disk group, using the same disk group name, same set of disks, and failure group 1Z0-053 6 http://www.certmagic.com
  • 7. configurations. C. Restore the disk group with changed disk group specification, failure group specification, disk group name, and other disk attributes. D. Restore metadata in an existing disk group by passing the existing disk group name as an input parameter. Answer: B, C, D Explanation: Purpose The md_restore command restores disk groups from a metadata backup file. Syntax and Description md_restore backup_file [--silent] [--full|--nodg|--newdg -o 'old_diskgroup:new_diskgroup [,...]'] [-S sql_script_file] [- G 'diskgroup [,diskgroup...]'] backup_file Reads the metadata information from backup_file. --silent Ignore errors. Typically, if md_restore encounters an error, it stops. Specifying this flag ignores any errors. --full Specifies to create a disk group and restore metadata. --nodg Specifies to restore metadata only. --newdg -o old_diskgroup:new_diskgroup] Specifies to create a disk group with a different name when restoring metadata. The -o option is required with --newdg. -S sql_script_file Write SQL commands to the specified SQL script file instead of executing the commands. -G diskgroup Select the disk groups to be restored. If no disk groups are defined, then all disk groups are restored. QUESTION: 10 You issued the following command: CREATE GLOBAL TEMPORARY TABLE admin_work_area (startdate DATE, enddate DATE, class CHAR(20)) ON COMMIT DELETE ROWS TABLESPACE tbs_t1; An index is then created on the ADMIN_WORK_AREA temporary table. Which two statements are true regarding the TBS_T1 tablespace in the above command? (Choose two.) A. It stores only the temporary table but not its indexes. B. It stores both the temporary table as well as its indexes. C. It must be a nondefault temporary tablespace for the database. D. It can be a default or nondefault temporary tablespace for the database. 1Z0-053 7 http://www.certmagic.com
  • 8. E. It must be the default temporary tablespace of the user who issues the command. Answer: B, D QUESTION: 11 The following command is executed to shut down an Automatic Storage Management (ASM) instance: SQL>SHUTDOWN ABORT; Which two statements describe the consequences of the above command? (Choose two.) A. The disk groups are orderly dismounted. B. The ASM instance requires recovery when it is started. C. The database instance that are currently clients of the ASM instance are aborted. D. The CSS daemon stops and has to be restarted before the ASM instance is restarted. Answer: B, C QUESTION: 12 Which of the following is not a configurable attribute for an individual disk group? A. AU_SIZE B. COMPATIBLE.RDBMS C. COMPATIBLE.ASM D. DISK_REPAIR_TIME E. DG_DROP_TIME Answer: E Explanation: DG_DROP_TIME is an invalid DG attribute. Disk Group Attributes The DISK_REPAIR_TIME disk group attribute specifies how long a disk remains offline before ASM drops the disk. The COMPATIBLE.ASM attribute determines the minimum software version for an ASM instance that uses the disk group. The COMPATIBLE.RDBMS attribute determines the minimum COMPATIBLE database initialization parameter setting for any database instance that uses the disk group. The AU_SIZE attribute determines the allocation unit size of the disk group. The values can be 1, 2, 4, 8, 16, 32, and 64 MB. 1Z0-053 8 http://www.certmagic.com
  • 9. QUESTION: 13 You are managing an Oracle Database 11g ASM instance with a disk group dg01 having three disks. One of the disks in the disk group becomes unavailable because of power failure. You issued the following command to change the DISK_REPAIR_TIME attribute from 3.6 hours to 5 hours: ALTER DISKGROUP dg01 SET ATTRIBUTE 'disk_repair_time' = '5h'; To which disks in the disk group will the new value be applicable? A. all disks in the disk group B. all disks that are currently in OFFLINE mode C. all disks that are not currently in OFFLINE mode D. all disks in the disk group only if all of them are ONLINE Answer: C Explanation: Check out the answer options, it is tricky. The NOT OFFLINE disks equals ONLINE disks. Refer to Set the DISK_REPAIR_TIME Disk Group Attribute Appropriately. The DISK_REPAIR_TIME disk group attribute specifies how long a disk remains offline before Oracle ASM drops the disk. If a disk is made available before the DISK_REPAIR_TIME parameter has expired, the storage administrator can issue the ONLINE DISK command and Oracle ASM resynchronizes the stale data from the mirror side. In Oracle Database 11g, the online disk operation does not restart if there is a failure of the instance on which the disk is running. You must reissue the command manually to bring the disk online. QUESTION: 14 You are managing an Oracle Database 11g database with ASM storage. The ASM disk group has the COMPATIBLE.ASM attribute set to 11.1. Which statements are true regarding extent management and allocation units in the ASM disk group? (Choose all that apply.) A. The au_size disk group attribute determines the size of allocation units in the disk group. B. The allocation unit size may vary but the extent size is fixed. C. The allocation unit size and extent size are fixed for all the disks in a disk group and cannot be changed. D. Extent management is completely automated. Answer: A, D 1Z0-053 9 http://www.certmagic.com
  • 10. QUESTION: 15 As DBA for the Rebalance, 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. Option A B. Option B C. Option C D. Option D E. Option E Answer: C Explanation: No SAN mirroring available means no external redundancy available. The highest redundancy of ASM is the HIGH redundancy with 3 mirror copies. QUESTION: 16 You have three production databases, HRDB, FINDB, and ORGDB, that use the same ASM instance. At the end of the day, while all three production database instances are running, you execute the following command on the ASM instance: SQL> shutdown immediate; What is the result of executing this command? A. The ASM instance is shut down, but the other instances are still running. B. It results in an error because other database instances are connected to it. C. All the instances, including the ASM instance, are shut down in the IMMEDIATE mode. D. HRDB, FINDB, and ORGDB instances are shut down in the ABORT mode and the ASM instance is shut down in the IMMEDIATE mode. 1Z0-053 10 http://www.certmagic.com
  • 11. Answer: B QUESTION: 17 You are managing an Oracle 11g database with ASM storage, for which the COMPATIBLE initialization parameter is set to 11.1.0. In the ASM instance, the COMPATIBLE.RDBMS attribute for the disk group is set to 10.2 and the COMPATIBLE.ASM attribute is set to 11.1. Which two statements are true in this scenario for the features enabled for ASM? (Choose two.) A. The ASM-preferred mirror read feature is enabled. B. The ASM supports variable sizes for extents of 1, 8, and 64 allocation units. C. The ASM disk is dropped immediately from a disk group when it becomes unavailable. D. The RDBMS always reads the primary copy of a mirrored extent of the ASM disk group. Answer: A, B QUESTION: 18 You issued the following command to mount the DATA disk group in restricted mode: ALTER DISKGROUP data MOUNT RESTRICT; What is the implication of this command? A. The client RDBMS instance can access the file as a read-only file. B. A new disk cannot be added to a disk group. C. A disk in a disk group can be taken offline. D. The client RDBMS instance cannot access the files in the disk group. Answer: D Explanation: MOUNT (link) Specify MOUNT to mount the disk groups in the local Oracle ASM instance. Specify ALL MOUNT to mount all disk groups specified in the ASM_DISKGROUPS initialization parameter. File operations can only be performed when a disk group is mounted. If Oracle ASM is running in a cluster or a standalone server managed by Oracle Restart, then the MOUNT clause automatically brings the corresponding resource online. RESTRICTED | NORMAL Use these clauses to determine the manner in which the disk groups are mounted. In the RESTRICTED mode, the disk group is mounted in single-instance exclusive mode. No other Oracle ASM instance in the same cluster can mount that disk group. In this mode the disk group is not usable by any Oracle ASM client. 1Z0-053 11 http://www.certmagic.com
  • 12. In the NORMAL mode, the disk group is mounted in shared mode, so that other Oracle ASM instances and clients can access the disk group. This is the default. QUESTION: 19 Your database is using a default temporary tablespace that contains the temp01.tmp temporary file. All the users on the database use the default temporary tablspace. A user issues a query on the ORDERS table and receives the following error: ERROR at line 1: ORA-01565: error in identifying file '/u01/app/oracle/oradata/TEST/temp01.tmp' ORA-27037: unable to obtain file status What would be the most efficient way to rectify this error? ## A. Add a new tempfile to the user's temporary tablespace and drop the tempfile that produced the error. B. Shut down the database instance, restore the temp01.tmp file from the backup, and then restart the database. C. Allow the database to continue running, drop the temp01.tmp temporary file, and then re-create it with new tempfiles. D. Take the temporary tablespace offline, recover the missing tempfile by applying redo logs, and then bring the temporary tablespace online. Answer: A QUESTION: 20 What is the proper command to shut down the database in a consistent manner? A. shutdown abort B. shutdown kill C. shutdown nowait D. shutdown immediate E. shutdown halt Answer: D 1Z0-053 12 http://www.certmagic.com