Download Oracle Database 12c: Data Guard Administration.1z0-066.BrainDumps.2018-12-19.55q.vcex

Vendor: Oracle
Exam Code: 1z0-066
Exam Name: Oracle Database 12c: Data Guard Administration
Date: Dec 19, 2018
File Size: 545 KB

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Purchase
Coupon: EXAM_HUB

Discount: 20%

Demo Questions

Question 1
Examine the Data Guard configuration:
DGMGRL> show configuration; 
Configuration –Animals 
Protection Mode: MaxAvailability
Databases:
dogs- Primary database 
sheep- (*) Physical standby database 
cats- Physical standby database 
Fast-Start Failover: ENABLED
Configuration Status:
SUCCESS 
What happens if you issue “switchover” to sheep;” at the DGMGRL prompt?
  1. The switchover succeeds but Dogs need to be reinstated.
  2. The switchover succeeds but Fast-Start Failover is suspended.
  3. The switchover succeeds and Cats become the new failover target.
  4. The switchover succeeds and Dogs become the new failover target.
  5. It results in an error indicating that a switchover is not allowed.
Correct answer: D
Explanation:
Incorrect Answers:E: NOT ALLOWED - Either this is a standby database and the primary database has not been switched first, or this is a primary database and there are no standby databases.
Incorrect Answers:
E: NOT ALLOWED - Either this is a standby database and the primary database has not been switched first, or this is a primary database and there are no standby databases.
Question 2
A data file on one of your physical standby databases has been accidentally deleted and you must restore and recover it. 
All the archive logs required for recovery are still on disk in the directory pointed to by the log_archive_dest_1 parameter. 
Which three steps must be performed to restore the missing file and recover the standby database while it is in the MOUNT state? (Choose three.)
  1. Recover the datafile by using the RMAN RECOVER DATAFILE command
  2. Restart the redo apply.
  3. Restore the datafile by using the RMAN RESTORE DATAFILE command.
  4. Stop the redo apply.
  5. Recover the database by using the RMAN RECOVER DATABASE command.
Correct answer: CDE
Explanation:
Recovery from Loss of Datafiles on the Standby Database 1. Connect SQL*Plus to the standby database. 2. Stop Redo Apply using the SQL ALTER DATABASE ... statement. 3. In a separate terminal, start RMAN and connect to both the standby and recovery catalog databases (use the TARGET keyword to connect to the standby instance). 4. Issue the following RMAN commands to restore and recover datafiles on the standby database:RESTORE DATAFILE <n,m,...>; RECOVER DATABASE; 5. To restore a tablespace, use the RMAN 'RESTORE TABLESPACE tbs_name1, tbs_name2, ...' command. 6. At the SQL*Plus prompt, restart Redo Apply using the SQL ALTER DATABASE ... statement. References: https://docs.oracle.com/cd/E11882_01/server.112/e41134/rman.htm
Recovery from Loss of Datafiles on the Standby Database 
1. Connect SQL*Plus to the standby database. 
2. Stop Redo Apply using the SQL ALTER DATABASE ... statement. 
3. In a separate terminal, start RMAN and connect to both the standby and recovery catalog databases (use the TARGET keyword to connect to the standby instance). 
4. Issue the following RMAN commands to restore and recover datafiles on the standby database:
RESTORE DATAFILE <n,m,...>; 
RECOVER DATABASE; 
5. To restore a tablespace, use the RMAN 'RESTORE TABLESPACE tbs_name1, tbs_name2, ...' command. 
6. At the SQL*Plus prompt, restart Redo Apply using the SQL ALTER DATABASE ... statement. 
References: https://docs.oracle.com/cd/E11882_01/server.112/e41134/rman.htm
Question 3
You administer a Data Guard environment consisting of a primary and three physical standby databases. 
One physical standby database is used for disaster recovery, one is used for reporting, and one is used as a replica for testing. 
The standby database used for testing is occasionally converted into a snapshot standby database and then converted back to a physical standby. 
The physical standby database is the only standby that is a mandatory destination. 
The broker configuration operates in MAXIMUM PERFORMANCE mode. 
Which ARCHIVELOG DELETION POLICY should be set, so that archive logs generated on the primary database are not deleted before they are consumed appropriately on each of the standby databases, but which allows them to be deleted form the primary as soon as it is safe to do so?
  1. CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON ALL STANDBY;
  2. CONFIGURE ACHIVELOG DELETION POLICY TO APPLIED ON STANDBY;
  3. CONFIGURE ACHIVELOG DELETION POLICY TO SHIPPED TO ALL STANDBY;
  4. CONFIGURE ACHIVELOG DELETION POLICY TO SHIPPED TO STANDBY;
  5. CONFIGURE ACHIVELOG DELETION POLICY TO NONE;
Correct answer: B
Explanation:
You can change this default deletion policy using the following RMAN command:CONFIGURE ARCHIVELOG DELETION POLICY TO [CLEAR | NONE | APPLIED ON STANDBY]; Use the APPLIED ON STANDBY clause so that archived redo log files that have been applied on all mandatory standby destinations will be deleted. Incorrect Answers:A: APPLIED ON ALL STANDBY is not valid.C, D: SHIPPED TO is not valid.E: Use the NONE clause so that archived redo logs in flash recovery area that were backed up or obsolete as per the RMAN retention policy are eligible for deletion. This is the default configuration. Archived redo log files that are backed up or obsolete are deleted to make space if the disk space in the flash recovery area becomes full.References: https://docs.oracle.com/cd/B19306_01/server.102/b14239/rman.htm#i1031870
You can change this default deletion policy using the following RMAN command:
CONFIGURE ARCHIVELOG DELETION POLICY TO [CLEAR | NONE | APPLIED ON STANDBY]; 
Use the APPLIED ON STANDBY clause so that archived redo log files that have been applied on all mandatory standby destinations will be deleted. 
Incorrect Answers:
A: APPLIED ON ALL STANDBY is not valid.
C, D: SHIPPED TO is not valid.
E: Use the NONE clause so that archived redo logs in flash recovery area that were backed up or obsolete as per the RMAN retention policy are eligible for deletion. This is the default configuration. Archived redo log files that are backed up or obsolete are deleted to make space if the disk space in the flash recovery area becomes full.
References: https://docs.oracle.com/cd/B19306_01/server.102/b14239/rman.htm#i1031870
Question 4
Which four factors can influence the rate of SQL apply on a logical standby database? (Choose four.)
  1. the size of the undo tablespace on the logical standby database
  2. the number of full table scans performed by SQL apply
  3. the number of coordinator processes on the standby database instance
  4. the size of the shared pool
  5. the number of APPLIER processes
  6. the number of PREPARER processes
Correct answer: BDEF
Explanation:
B: If a table still does not have any unique index specified on the logical standby database, this may cause UPDATE statements to do full table scans on the logical standby database. You can remedy that by adding a unique index on the column on the logical standby database.E: SQL Apply uses a collection of background processes to apply changes from the primary database to the logical standby database.During apply processing:The ANALYZER process identifies dependencies between different transactions. The COORDINATOR process (LSP) assigns transactions to different appliers and coordinates among them to ensure that dependencies between transactions are honored. The APPLIER processes applies transactions to the logical standby database under the supervision of the coordinator process. F: The PREPARER process is used during the log mining process, which is part of the SQL apply process.D: The Shared Pool is used by the preparar and Builder proccesses.Figure: SQL Apply Processing    Incorrect Answers:C: There is only one coordinator process.References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/manage_ls.htm
B: If a table still does not have any unique index specified on the logical standby database, this may cause UPDATE statements to do full table scans on the logical standby database. You can remedy that by adding a unique index on the column on the logical standby database.
E: SQL Apply uses a collection of background processes to apply changes from the primary database to the logical standby database.
During apply processing:
  • The ANALYZER process identifies dependencies between different transactions. 
  • The COORDINATOR process (LSP) assigns transactions to different appliers and coordinates among them to ensure that dependencies between transactions are honored. 
  • The APPLIER processes applies transactions to the logical standby database under the supervision of the coordinator process. 
F: The PREPARER process is used during the log mining process, which is part of the SQL apply process.
D: The Shared Pool is used by the preparar and Builder proccesses.
Figure: SQL Apply Processing
  
Incorrect Answers:
C: There is only one coordinator process.
References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/manage_ls.htm
Question 5
Which two are true about database roles in an Oracle Data Guard Configuration? (Choose two.)
  1. A configuration consisting only of a primary and one or more physical standby databases can support a rolling release upgrade.
  2. A Logical Standby Database can be converted to a Snapshot Standby Database.
  3. A Logical Standby Database can cascade redo to a terminal destination.
  4. A Snapshot Standby Database can be a fast-start failover target.
  5. A Physical Standby Database can be converted into a Logical Standby Database.
Correct answer: BE
Explanation:
B: A snapshot standby database can be converted back into a physical standby database at any time.E: You create a logical standby database by first creating a physical standby database and then transitioning it to a logical standby database.Incorrect Answers:A: Oracle Database supports the installation of database software upgrades, and the application of patch sets, in a rolling fashion—with near zero database downtime—by using Data Guard SQL Apply and logical standby databases.C: A cascaded redo transport destination (also known as a terminal destination) receives primary database redo indirectly from a standby database rather than directly from a primary database. Only physical standby databases can cascade redo.D: A snapshot standby cannot be the target of a switchover or fast-start failover operation.References: https://docs.oracle.com/cd/E11882_01/server.112/e41134/create_ls.htm#SBYDB4732https://docs.oracle.com/cd/E11882_01/server.112/e41134/manage_ps.htm#SBYDB00580
B: A snapshot standby database can be converted back into a physical standby database at any time.
E: You create a logical standby database by first creating a physical standby database and then transitioning it to a logical standby database.
Incorrect Answers:
A: Oracle Database supports the installation of database software upgrades, and the application of patch sets, in a rolling fashion—with near zero database downtime—by using Data Guard SQL Apply and logical standby databases.
C: A cascaded redo transport destination (also known as a terminal destination) receives primary database redo indirectly from a standby database rather than directly from a primary database. Only physical standby databases can cascade redo.
D: A snapshot standby cannot be the target of a switchover or fast-start failover operation.
References: https://docs.oracle.com/cd/E11882_01/server.112/e41134/create_ls.htm#SBYDB4732
https://docs.oracle.com/cd/E11882_01/server.112/e41134/manage_ps.htm#SBYDB00580
Question 6
There are currently 6 APPLIER and 6 PREPARER processes running and no idle APPLIER processes on your logical standby database. 
The MAX_SERVERS SQL apply parameter and number of archiver processes are both set to 12. 
Identify two changes, each of which would allow you to increase the number of APPLIER processes. (Choose two.)
  1. Increase the PROCESSES initialization parameter
  2. Increase the value for the MAX_SERVERS SQL apply parameter.
  3. Decrease the number of archiver processes on the standby database.
  4. Increase the PARALLEL_MAX_SERVER initialization parameter
  5. Decrease the number of PREPARER processes
  6. Increase the RECOVERY_PARALLELISM initialization parameter
Correct answer: BE
Explanation:
There are three parameters that can be modified to control the number of processes allocated to SQL Apply: MAX_SERVERS, APPLY_SERVERS, and PREPARE_SERVERS. The following relationships must always hold true:APPLY_SERVERS + PREPARE_SERVERS = MAX_SERVERS - 3 This is because SQL Apply always allocates one process for the READER, BUILDER, and ANALYZER roles. References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/manage_ls.htm
There are three parameters that can be modified to control the number of processes allocated to SQL Apply: MAX_SERVERS, APPLY_SERVERS, and PREPARE_SERVERS. The following relationships must always hold true:
APPLY_SERVERS + PREPARE_SERVERS = MAX_SERVERS - 3 
This is because SQL Apply always allocates one process for the READER, BUILDER, and ANALYZER roles. 
References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/manage_ls.htm
Question 7
Which three statements are true about snapshot standby databases? (Choose three.)
  1. Snapshot standby databases may be used for rolling release upgrades.
  2. If datafiles grow while a database is a snapshot standby database, then they shrink when converted back to a physical standby database.
  3. Flashback logs are used to convert a snapshot standby database back into a physical standby database.
  4. A snapshot standby database can have Real-Time Query enabled.
  5. A guaranteed restore point is created automatically when a physical standby database is converted into a snapshot standby database.
Correct answer: BCE
Explanation:
C: Flashback Database is similar to conventional point-in-time recovery in its effects. It enables you to return a database to its state at a time in the recent past. Flashback Database uses its own logging mechanism, creating flashback logs and storing them in the fast recovery area. You can only use Flashback Database if flashback logs are available. Flashback Database is used to convert a snapshot standby database back into a physical standby database.E: When we convert the physical standby database to snapshot standby database a guaranteed restore point is created. This guaranteed restore point is used to flashback a snapshot standby database to its original state.Incorrect Answers:A: Oracle Database supports the installation of database software upgrades, and the application of patch sets, in a rolling fashion—with near zero database downtime—by using Data Guard SQL Apply and logical standby databases.References:https://docs.oracle.com/cd/E11882_01/server.112/e41134/manage_ps.htm#SBYDB4803http://satya-dba.blogspot.se/2012/06/snapshot-standby-databases-oracle.html
C: Flashback Database is similar to conventional point-in-time recovery in its effects. It enables you to return a database to its state at a time in the recent past. Flashback Database uses its own logging mechanism, creating flashback logs and storing them in the fast recovery area. You can only use Flashback Database if flashback logs are available. Flashback Database is used to convert a snapshot standby database back into a physical standby database.
E: When we convert the physical standby database to snapshot standby database a guaranteed restore point is created. This guaranteed restore point is used to flashback a snapshot standby database to its original state.
Incorrect Answers:
A: Oracle Database supports the installation of database software upgrades, and the application of patch sets, in a rolling fashion—with near zero database downtime—by using Data Guard SQL Apply and logical standby databases.
References:
https://docs.oracle.com/cd/E11882_01/server.112/e41134/manage_ps.htm#SBYDB4803
http://satya-dba.blogspot.se/2012/06/snapshot-standby-databases-oracle.html
Question 8
Which three statements are true about Global Sequences when connected to a physical standby database with Real-Time Query enabled? (Choose three.)
  1. If the CACHE option is set then the size of the cache must be at least 100.
  2. Their creation requires that a LOG_ARCHIVE_DEST_n parameter be defined in the standby that points back to their primary.
  3. Their usage will always have a performance impact on the primary database.
  4. Their usage may have a performance impact on the physical standby database if the CACHE size is too small
  5. They must have the NOORDER and CACHE options set.
Correct answer: BDE
Explanation:
B: the terminal standby should have a LOG_ARCHIVE_DEST_n parameter defined that points back to the primary.D: Because the standby's requests for a range of sequences involve a round-trip to the primary, be sure to specify a large enough value for the CACHE keyword when you create a sequence that will be used on an Oracle Active Data Guard standby. Otherwise, performance could suffer.E: In an Oracle Active Data Guard environment, sequences created by the primary database with the default CACHE and NOORDER options can be accessed from standby databases as well.References: https://docs.oracle.com/database/121/SBYDB/manage_ps.htm#SBYDB5164
B: the terminal standby should have a LOG_ARCHIVE_DEST_n parameter defined that points back to the primary.
D: Because the standby's requests for a range of sequences involve a round-trip to the primary, be sure to specify a large enough value for the CACHE keyword when you create a sequence that will be used on an Oracle Active Data Guard standby. Otherwise, performance could suffer.
E: In an Oracle Active Data Guard environment, sequences created by the primary database with the default CACHE and NOORDER options can be accessed from standby databases as well.
References: https://docs.oracle.com/database/121/SBYDB/manage_ps.htm#SBYDB5164
Question 9
Examine this query and its output:
SQL> select fs_failover_status, fs_failover_current_target, 
  2         fs_failover_observer_present, fs_failover_oserver_host     
3 from v$database:
FS_FAILOVER_STATUS FS_FAILOVER_CURRENT_TARGET 
FS_FAILOVER_OBSERVER_PRESENT FS_FAILOVER_OBSERVER_HOST        
---------------  ----------------------- ---------------- ------------------ 
BYSTANDER                  cats          NO 
O17.example.com          
Which are true?
  1. The observer is not connected to the database on which the query was executed.
  2. Cats is a bystander database.
  3. The observer is connected to the database on which the query was executed.
  4. The observer is currently running on o17.example.com.
  5. The observer is not running, but should run on o17.example.com.
Correct answer: A
Explanation:
Viewing Information About the Observer You can find information about the observer by querying the following columns in the V$DATABASE view:FS_FAILOVER_OBSERVER_HOST shows the name of the computer on which the observer is running. Here it is cats. FS_FAILOVER_OBSERVER_PRESENT shows whether or not the observer is connected to the local database. Here the value is NO. References: https://docs.oracle.com/cd/B19306_01/server.102/b14230/sofo.htm
Viewing Information About the Observer 
You can find information about the observer by querying the following columns in the V$DATABASE view:
  • FS_FAILOVER_OBSERVER_HOST shows the name of the computer on which the observer is running. Here it is cats. 
  • FS_FAILOVER_OBSERVER_PRESENT shows whether or not the observer is connected to the local database. Here the value is NO. 
References: https://docs.oracle.com/cd/B19306_01/server.102/b14230/sofo.htm
Question 10
Which three are true about using RMAN in a Data Guard environment? (Choose three.)
  1. A recovery catalog is required when RMAN is used to take backups from a logical standby database in a Data Guard configuration if you plan to recover the primary using those backups.
  2. Backups of archived redo logs taken on a physical standby are interchangeable with a primary.
  3. A recovery catalog is required when RMAN is used to take backups from a physical standby database if you plan to recover the primary using those backups.
  4. Backups of control files taken on a physical standby are not interchangeable with a primary.
  5. Backups of data files taken on a physical standby are interchangeable with a primary.
Correct answer: BCE
Explanation:
RMAN uses a recovery catalog to track filenames for all database files in a Data Guard environment. A recovery catalog is a database schema used by RMAN to store metadata about one or more Oracle databases. The catalog also records where the online redo logs, standby redo logs, tempfiles, archived redo logs, backup sets, and image copies are created. RMAN commands use the recovery catalog metadata to behave transparently across different physical databases in the Data Guard environment. For example, you can back up a tablespace on a physical standby database and restore and recover it on the primary database. Similarly, you can back up a tablespace on a primary database and restore and recover it on a physical standby database. Incorrect Answers:A: Because a logical standby database is not a block-for-block copy of the primary database, you cannot use a logical standby database to back up the primary databaseD: Backups of standby control files and nonstandby control files are interchangeable. For example, you can restore a standby control file on a primary database and a primary control file on a physical standby database. This interchangeability means that you can offload control file backups to one database in a Data Guard environment. RMAN automatically updates the filenames for database files during restore and recovery at the databases.References:  https://docs.oracle.com/cd/E11882_01/server.112/e41134/rman.htm#SBYDB4853
RMAN uses a recovery catalog to track filenames for all database files in a Data Guard environment. A recovery catalog is a database schema used by RMAN to store metadata about one or more Oracle databases. The catalog also records where the online redo logs, standby redo logs, tempfiles, archived redo logs, backup sets, and image copies are created. 
RMAN commands use the recovery catalog metadata to behave transparently across different physical databases in the Data Guard environment. For example, you can back up a tablespace on a physical standby database and restore and recover it on the primary database. Similarly, you can back up a tablespace on a primary database and restore and recover it on a physical standby database. 
Incorrect Answers:
A: Because a logical standby database is not a block-for-block copy of the primary database, you cannot use a logical standby database to back up the primary database
D: Backups of standby control files and nonstandby control files are interchangeable. For example, you can restore a standby control file on a primary database and a primary control file on a physical standby database. This interchangeability means that you can offload control file backups to one database in a Data Guard environment. RMAN automatically updates the filenames for database files during restore and recovery at the databases.
References:  https://docs.oracle.com/cd/E11882_01/server.112/e41134/rman.htm#SBYDB4853
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX AND EXAM FILES

Use ProfExam Simulator to open VCEX and EXAM files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!