Which two statements about switchover and failover are true?
In this SQL statement, what is the partitioning criteria?
CREATE TABLE books_part
PARTITION BY RANGE (cell_id) (
PARTITION p0l VALUES LESS THAN (2),
PARTITION p02 VALUES LESS THAN (3) ,
. . .
PARTITION pl4 VALUES LESS THAN (15),
PARTITION pl5 VALUES LESS THAN (16),
PARTITION pl6 VALUES LESS THAN (MAXVALUE)
)
AS SELECT * FROM books;
Which tool is recommended for moving a PDB to a non-CDB?
You want to drop a pluggable database from a multitenant container database that is used for development, which two statements are true?
Consider an application in which memory required for each session is 400 KB and memory required for each server process is 4 MB. The pool size is 100 and the number of shared servers used is 100. If there are 5000 client connections, what is the amount of memory used by a dedicated server?
Your customer is looking for a solution that meets these four needs:
1 - Replicate data from source to target for reporting purposes.
2 -Replicate data from one source to multiple targets.
3 - Replicate data between two databases for instant failover.
4 - Replicate data from multiple sources to a single target for a data warehouse.
Which GoldenGate-supported topology would you recommended?
Consider 10 scenarios that result in database downtime. Which five of them are considered as planned downtime?
Identify two types of solutions in which you would need to use Active Data Guard and Golden Gate together.
Which two statements about Automatic Data Optimization (ADO) are true?
Oracle Database 12c provides new task-specific privileges (SYSBACKUP, SYSDG, and SYSKM) to handle standard administration duties. Which two statements about these standard administration privileges are true?
Which command do you use to create a local role while you are connected as the local user?
You are about to install Oracle Database 12c Enterprise Edition. Which statement is true?
John is a CDB administrator, and Mike and Tim are PDB administrators of their respective databases- John takes a complete CDB backup by using RMAN>Backup Database. Mike and Tim may need point-in-time recovery of their PDBs. Which statement is true?
Which three tasks can you perform in Database Express?
A standby database is in mounted state and you are required to perform a failover to the physical standby. Which solution is best suited forthis scenario?
Real-Time ADDM detects a high-load performance issue within the database. Which condition triggered it?
Examine the output:
SQL> SELECT index_name, status FROM dba_indexes WHEREstatus='UNUSABLE’;
INDEX_NAME STATUS
--------------------- -----------------
EIND UNUSABLE
Which two statements about this index are true?
Which two statements about PDBs and CDBs are true?
Which three events signal a database writer (DWR) to write buffers to disk?
Which two statements represent where Oracle Net must reside?
Which option represents the steps to add a multiplexed copy of the current control file or to rename a control file in Oracle Database 12c?
a - Shut down the database.
b - Restart the database.
c - Copy an existing control file to a new location by using operating system commands.
d - Edit the CONTROL_FILESparameter in the database initialization parameter file to add the new control file name, or to change the existingcontrol file name.