Oracle 1z0-066 Exam Practice Questions (P. 1)
- Full Access (112 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #1
Which two statements are true for Data Guard environments with multi-tenant databases?
- ADB_UNIQUE_NAME must be specified differently for each pluggable database within a multi-tenant standby database.
- BEach pluggable database within a multi-tenant physical standby database has a minimum of one associated Oracle Net service name.Most Voted
- CEach pluggable database within a multi-tenant physical standby has one MRP background process running during redo apply.
- DA pluggable database within a multi-tenant standby database can have a different open mode than the container database.Most Voted
- EA pluggable database within a multi-tenant standby database can have a different database role than the container database.
Correct Answer:
AD
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
AD
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
send
light_mode
delete
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?
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?
- ACreate 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.
- BCreate 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.
- CSet 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.
- DSet the DB_NAME and DB_UNIQUE_NAME identically on all databases; modify the connection descriptors on client applications to include all the standby
Correct Answer:
A
References:
http://docs.oracle.com/cd/B19306_01/server.102/b14239/scenarios.htm#i1054744
A
References:
http://docs.oracle.com/cd/B19306_01/server.102/b14239/scenarios.htm#i1054744
send
light_mode
delete
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.
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.
- ADGMGRL> convert database sheep to physical standby;
- BDGMGRL> convert database cats to physical standby;
- CDGMGRL> edit database dogs set property LogXptMode= fastsync;
- DDGMGRL> edit database sheep set property LogXptMode= fastsync;
- EDGMGRL> edit database cats set property LogXptMode= sync;
Correct Answer:
BE
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
BE
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
send
light_mode
delete
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?
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?
- AArchive logs on the primary database may be deleted once they are applied on all standby databases.Most Voted
- BArchive logs on the primary database may be deleted once they are shipped on all standby databases.
- CThe 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.Most Voted
- DThe 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.
- EArchive logs on the primary database may be deleted once they are archived locally to disk.Most Voted
Correct Answer:
ADE
References:
http://www.oracle.com/technetwork/database/availability/farsync-2267608.pdf
ADE
References:
http://www.oracle.com/technetwork/database/availability/farsync-2267608.pdf
send
light_mode
delete
Question #5
Which two are prerequisites for configuring flashback database for Oracle 12c databases, in a Data Guard environment?
- AA flash recovery area must be configured.
- BThe database must be in MOUNT state.
- CThe database must be in ARCHIVELOG mode.
- DA far sync instance must be configured to flash back a standby when the primary has been flashed back.
- EThe Data Guard Broker must be used.
Correct Answer:
AC
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
AC
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
send
light_mode
delete
All Pages