Download Oracle Database 12c: Data Guard Administration.1z0-066.ActualTests.2019-02-27.92q.vcex

Vendor: Oracle
Exam Code: 1z0-066
Exam Name: Oracle Database 12c: Data Guard Administration
Date: Feb 27, 2019
File Size: 680 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
Which two statements are true for Data Guard environments with multi-tenant databases? (Choose two.)
  1. DB_UNIQUE_NAME must be specified differently for each pluggable database within a multi-tenant standby database.
  2. Each pluggable database within a multi-tenant physical standby database has a minimum of one associated Oracle Net service name.
  3. Each pluggable database within a multi-tenant physical standby has one MRP background process running during redo apply.
  4. A pluggable database within a multi-tenant standby database can have a different open mode than the container database.
  5. A pluggable database within a multi-tenant standby database can have a different database role than the container database.
Correct answer: AD
Explanation:
Incorrect Answers:C: in 12c Data Guard is set up at the Container level and not the individual Pluggable database level as the redo log files only belong to the Container database and the individual pluggable databases do not have their own online redo log files.E: The database role is defined at the CDB level, not at the individual container level.Any DDL related to role changes must be executed in the root container because a role is associated with an entire CDB. Individual pluggable databases (PDBs) do not have their own roles. References: https://docs.oracle.com/database/121/SBYDB/create_ps.htm#SBYDB5213
Incorrect Answers:
C: in 12c Data Guard is set up at the Container level and not the individual Pluggable database level as the redo log files only belong to the Container database and the individual pluggable databases do not have their own online redo log files.
E: The database role is defined at the CDB level, not at the individual container level.
Any DDL related to role changes must be executed in the root container because a role is associated with an entire CDB. Individual pluggable databases (PDBs) do not have their own roles. 
References: https://docs.oracle.com/database/121/SBYDB/create_ps.htm#SBYDB5213
Question 2
Your Data Guard environment has two remote physical standby databases. 
Client applications use the local naming method to connect to the primary database instance. 
You want applications to automatically connect to the new primary database instance in case of a switchover or a failover. 
Which will fulfill this requirement?
  1. Create a database service on each standby database that is started automatically by a trigger, when the database role is PRIMARY; modify the connection descriptors used by client applications to include all the standby hosts and connect to the database instance using that service name.
  2. Create a database service on the primary database that is started automatically by a trigger, when the database role is PRIMARY; modify the connection descriptors used by client applications to include all the standby hosts and connect to the database instance using that service name.
  3. Set the INSTANCE_NAME parameter identically on all databases; modify the connection descriptor on client applications to include all the standby hosts and connect to the database instance using that service name.
  4. Set the DB_NAME and DB_UNIQUE_NAME identically on all databases; modify the connection descriptors on client applications to include all the standby hosts and connect to the database instance using that service name.
Correct answer: A
Explanation:
References: http://docs.oracle.com/cd/B19306_01/server.102/b14239/scenarios.htm#i1054744
References: http://docs.oracle.com/cd/B19306_01/server.102/b14239/scenarios.htm#i1054744
Question 3
Examine the Data Guard configuration:
DGMGRL > show configuration; 
Configuration-Animals 
Protection Mode: MaxPerformance
Databases:
dogs-Primary database 
sheep-Snapshot standby database 
cats-Snapshot standby database 
Fast-Start Failover: DISABLED
Configuration Status:
SUCCESS 
You receive an error while attempting to raise the protection mode to Maximum Availability:
DGMGDRL> edit configuration set protection mode as maxavailability; 
Error: ORA-16627: operation disallowed since no standby databases would remain to support protection mode Failed. 
Identify two statements that you can execute, either one of which will enable successful raising of the protection mode to Maximum Availability. (Choose two.)
  1. DGMGRL> convert database sheep to physical standby;
  2. DGMGRL> convert database cats to physical standby;
  3. DGMGRL> edit database dogs set property LogXptMode= fastsync;
  4. DGMGRL> edit database sheep set property LogXptMode= fastsync;
  5. DGMGRL> edit database cats set property LogXptMode= sync;
Correct answer: BE
Explanation:
The MAXAVAILABILITY protection mode requires that there be at least one standby database configured to use standby redo log files, with its LogXptMode configurable database property set to SYNC. References: https://docs.oracle.com/cd/B28359_01/server.111/b28295/cli.htm
The MAXAVAILABILITY protection mode requires that there be at least one standby database configured to use standby redo log files, with its LogXptMode configurable database property set to SYNC. 
References: https://docs.oracle.com/cd/B28359_01/server.111/b28295/cli.htm
Question 4
You administer a Data Guard environment with a primary and two physical standby databases. 
One of the physical standby databases is used for reporting and is on the same host as the primary database. 
The other physical standby database is remote, used for disaster recovery and REDO is routed to it via a far sync instance. 
Backups are offloaded to the remote physical standby. 
Which three are true concerning the management of archive logs in this Data Guard configuration? (Choose three.)
  1. Archive logs on the primary database may be deleted once they are applied on all standby databases.
  2. Archive logs on the primary database may be deleted once they are shipped on all standby databases.
  3. The deletion policy for archive logs on the remote physical standby should be set so that archived logs are deleted once they backed up at least once on the remote physical standby database.
  4. The deletion policy for archive logs on the remote physical standby should be set so that archived logs are deleted once they are applied on all standby databases.
  5. Archive logs on the primary database may be deleted once they are archived locally to disk.
Correct answer: ADE
Explanation:
References: http://www.oracle.com/technetwork/database/availability/farsync-2267608.pdf
References: http://www.oracle.com/technetwork/database/availability/farsync-2267608.pdf
Question 5
Which two are prerequisites for configuring flashback database for Oracle 12c databases, in a Data Guard environment? (Choose two.)
  1. A flash recovery area must be configured.
  2. The database must be in MOUNT state.
  3. The database must be in ARCHIVELOG mode.
  4. A far sync instance must be configured to flash back a standby when the primary has been flashed back.
  5. The Data Guard Broker must be used.
Correct answer: AC
Explanation:
Configure the following database settings before enabling Flashback Database:You must have a fast recovery area enabled, because flashback logs can only be stored in the fast recovery area. Your database must be running in ARCHIVELOG mode, because archived logs are used in the Flashback Database operation. For Oracle Real Application Clusters (Oracle RAC) databases, the fast recovery area must be in a clustered file system or in ASM. References: https://docs.oracle.com/database/121/BRADV/flashdb.htm#BRADV582
Configure the following database settings before enabling Flashback Database:
You must have a fast recovery area enabled, because flashback logs can only be stored in the fast recovery area. 
Your database must be running in ARCHIVELOG mode, because archived logs are used in the Flashback Database operation. 
For Oracle Real Application Clusters (Oracle RAC) databases, the fast recovery area must be in a clustered file system or in ASM. 
References: https://docs.oracle.com/database/121/BRADV/flashdb.htm#BRADV582
Question 6
You are required to change the Data Guard Configuration protection mode from MAXPERFORMANCE to MAXAVAILABILITY using Enterprise Manager Cloud Control. 
Which two are true about this change? (Choose two.)
  1. If the primary database cannot write its redo to at least one synchronized standby database, then the protection level remains unchanged.
  2. The primary database instance will remain up and running, if it cannot write redo to at least one synchronized standby database.
  3. Transactions will not commit until all redo data needed to recover those transactions are written to the online redo log, and to the standby redo log on at least one synchronizes standby database.
  4. Fast start failover can be enabled when making the chance.
  5. Real time apply will be automatically turned on.
Correct answer: BC
Explanation:
Maximum Availability This protection mode provides the highest level of data protection that is possible without compromising the availability of a primary database. Transactions do not commit until all redo data needed to recover those transactions has been written to the online redo log and to at least one synchronized standby database. If the primary database cannot write its redo stream to at least one synchronized standby database, it operates as if it were in maximum performance mode to preserve primary database availability until it is again able to write its redo stream to a synchronized standby database. References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/protection.htm
Maximum Availability 
This protection mode provides the highest level of data protection that is possible without compromising the availability of a primary database. Transactions do not commit until all redo data needed to recover those transactions has been written to the online redo log and to at least one synchronized standby database. 
If the primary database cannot write its redo stream to at least one synchronized standby database, it operates as if it were in maximum performance mode to preserve primary database availability until it is again able to write its redo stream to a synchronized standby database. 
References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/protection.htm
Question 7
Which four database parameters might be affected by or influence the creation of standby databases? (Choose four.)
  1. DB_NAME
  2. ARCHIVE_LAG_TARGET
  3. COMPATIBLE
  4. DB_FILE_NAME_CONVERT
  5. DB_UNIQUE_NAME
  6. FAL_SERVER
  7. STANDBY_ARCHIVE_DEST
Correct answer: ADEF
Explanation:
A: DB_NAMEOn a primary database, specify the name used when the database was created. On a physical standby database, use the DB_NAME of the primary database. C: Ensure the COMPATIBLE initialization parameter is set to the same value on both the primary and standby databases. If the values differ, redo transport services may be unable to transmit redo data from the primary database to the standby databases.D: DB_FILE_NAME_CONVERTSpecify the path name and filename location of the primary database data files followed by the standby location. This parameter converts the path names of the primary database data files to the standby data file path names. E: DB_UNIQUE_NAMESpecify a unique name for each database. This name stays with the database and does not change, even if the primary and standby databases reverse roles. F: FAL_SERVERSpecify the Oracle Net service name of the FAL server (typically this is the database running in the primary role). References: https://docs.oracle.com/database/121/SBYDB/create_ps.htm#SBYDB4720
A: DB_NAME
On a primary database, specify the name used when the database was created. On a physical standby database, use the DB_NAME of the primary database. 
C: Ensure the COMPATIBLE initialization parameter is set to the same value on both the primary and standby databases. If the values differ, redo transport services may be unable to transmit redo data from the primary database to the standby databases.
D: DB_FILE_NAME_CONVERT
Specify the path name and filename location of the primary database data files followed by the standby location. This parameter converts the path names of the primary database data files to the standby data file path names. 
E: DB_UNIQUE_NAME
Specify a unique name for each database. This name stays with the database and does not change, even if the primary and standby databases reverse roles. 
F: FAL_SERVER
Specify the Oracle Net service name of the FAL server (typically this is the database running in the primary role). 
References: https://docs.oracle.com/database/121/SBYDB/create_ps.htm#SBYDB4720
Question 8
Your Data Guard environment has one physical standby database using Real-Time Query. 
Two sentences have been created by these SQL statements:
create sequence a global; 
create sequence b session; 
Neither sequence has been used since being created. 
Session 1 connects to the primary database instance and issues these two SQL statements:
SELECT a.nextval FROM DUAL; 
SELECT b.nextval FROM DUAL; 
Then session 2 connects to the physical standby database instance and issues the same SQL statements. 
What output will be seen for session 2?
  1.   
  2.   
  3.   
  4.   
Correct answer: C
Question 9
You must propose an Oracle Data Guard configuration for a database supporting an OLTP workload that meets these permanent requirements:
  1. Data loss is not permitted. 
  2. Read-only applications should not connect to the primary database instance. 
    Additionally, there are these requirements, only one of which is ever done at any one time:
  3. It should be possible to apply and test designated patches with a minimum amount of downtime. 
  4. Upgrading to a new database release should be performed with the least possible amount of downtime. 
  5. New application software releases should be tested against an exact up-to-date replica of the production database. 
You propose a primary database with one physical standby database configured in Maximum Protection mode. 
Which requirements do you meet?
  1. 2, 3, 4, and 5
  2. 1, 2, 3, 4, and 5
  3. 1 and 2
  4. only requirement 5
  5. only requirement 1
Correct answer: C
Explanation:
Maximum Protection mode ensures that zero data loss occurs if a primary database fails. Because this data protection mode prioritizes data protection over primary database availability, Oracle recommends that a minimum of two standby databases be used to protect a primary database that runs in maximum protection mode to prevent a single standby database failure from causing the primary database to shut down. Incorrect Answers:A, D: Maximum Protection mode ensures that zero data loss occurs if a primary database fails.References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/protection.htm
Maximum Protection mode ensures that zero data loss occurs if a primary database fails. 
Because this data protection mode prioritizes data protection over primary database availability, Oracle recommends that a minimum of two standby databases be used to protect a primary database that runs in maximum protection mode to prevent a single standby database failure from causing the primary database to shut down. 
Incorrect Answers:
A, D: Maximum Protection mode ensures that zero data loss occurs if a primary database fails.
References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/protection.htm
Question 10
You must configure an Oracle Data Guard environment consisting of:
  1. A primary database 
  2. Three Physical Standby Databases 
You must meet these requirements:
  1. A designated physical standby database should become the primary database automatically whenever the primary database falls. 
  2. The chosen protection mode should provide the highest level of protection possible without violating the other requirement. 
Which redo transport mode and protection mode would you configure to meet these requirements?
  1. SYNC NOAFFRIM and Maximum Protection
  2. SYNC NOAFFIRM and Maximum Availability
  3. ASYNC and Maximum Performance
  4. SYNC AFFIRM and Maximum Availability
  5. SYNC AFFIRM and Maximum Protection
Correct answer: D
Explanation:
The Maximum Availability protection mode provides the highest level of data protection that is possible without compromising the availability of a primary database. When a transport is performed using SYNC/AFFIRM, the primary performs write operations and waits for acknowledgment that the redo has been transmitted synchronously to the physical standby and written to disk. A SYNC/AFFIRM transport provides an additional protection benefit at the expense of a performance impact caused by the time required to complete the I/O to the standby redo log. Incorrect Answers:B: When a transport is performed using SYNC/NOAFFIRM, the primary performs write operations and waits only for acknowledgement that the data has been received on the standby, not that it has been written to disk. The SYNC/NOAFFIRM transport can provide a performance benefit at the expense of potential exposure to data loss in a special case of multiple simultaneous failures.References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/protection.htm
The Maximum Availability protection mode provides the highest level of data protection that is possible without compromising the availability of a primary database. 
When a transport is performed using SYNC/AFFIRM, the primary performs write operations and waits for acknowledgment that the redo has been transmitted synchronously to the physical standby and written to disk. A SYNC/AFFIRM transport provides an additional protection benefit at the expense of a performance impact caused by the time required to complete the I/O to the standby redo log. 
Incorrect Answers:
B: When a transport is performed using SYNC/NOAFFIRM, the primary performs write operations and waits only for acknowledgement that the data has been received on the standby, not that it has been written to disk. The SYNC/NOAFFIRM transport can provide a performance benefit at the expense of potential exposure to data loss in a special case of multiple simultaneous failures.
References: https://docs.oracle.com/cd/B28359_01/server.111/b28294/protection.htm
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!