Podcast
Questions and Answers
Which two are true about gathering optimizer statistics?
Which two are true about gathering optimizer statistics?
Choose the minimum required steps in the correct order to recover the database.
Choose the minimum required steps in the correct order to recover the database.
By default, AWR snapshots are retained for 7 days.
By default, AWR snapshots are retained for 7 days.
True (A)
Automatic Shared Memory Management is disabled for one of your database instances. Some SQL statements perform poorly due to excessive __________ activity, thereby degrading performance.
Automatic Shared Memory Management is disabled for one of your database instances. Some SQL statements perform poorly due to excessive __________ activity, thereby degrading performance.
Signup and view all the answers
Match the following flashback technologies with their purpose:
Match the following flashback technologies with their purpose:
Signup and view all the answers
Which three are true about RMAN archival backups with the RESTORE POINT clause?
Which three are true about RMAN archival backups with the RESTORE POINT clause?
Signup and view all the answers
Which three are true about backing up the control file?
Which three are true about backing up the control file?
Signup and view all the answers
Which two are true about gathering optimizer statistics?
Which two are true about gathering optimizer statistics?
Signup and view all the answers
Which two are true about Recovery Manager (RMAN) diagnostic message output?
Which two are true about Recovery Manager (RMAN) diagnostic message output?
Signup and view all the answers
Examine this configuration: While CDB1 is open, '/u02/app/oracle/fast_recover_area/cdb1/CDB1/controlfile02.ctl' is accidentally deleted. To recover from this critical failure, you execute these commands: What will be the outcome?
Examine this configuration: While CDB1 is open, '/u02/app/oracle/fast_recover_area/cdb1/CDB1/controlfile02.ctl' is accidentally deleted. To recover from this critical failure, you execute these commands: What will be the outcome?
Signup and view all the answers
You take regular backups of one of your production databases by using RMAN with a recovery catalog. You have added two new tablespaces to this database which must be included in future backups. Which process occurs which allows the new backups to contain the new datafiles?
You take regular backups of one of your production databases by using RMAN with a recovery catalog. You have added two new tablespaces to this database which must be included in future backups. Which process occurs which allows the new backups to contain the new datafiles?
Signup and view all the answers
You must migrate a non-CDB Oracle 11g Database to a CDB without first performing an upgrade to the non-CDB. User-defined objects are stored in several tablespaces in the non-CDB. Which three methods can you use?
You must migrate a non-CDB Oracle 11g Database to a CDB without first performing an upgrade to the non-CDB. User-defined objects are stored in several tablespaces in the non-CDB. Which three methods can you use?
Signup and view all the answers
Which two statements are true about recovering logically corrupted tables or table partitions from an RMAN backup?
Which two statements are true about recovering logically corrupted tables or table partitions from an RMAN backup?
Signup and view all the answers
Which three are true about an application seed pluggable database (PDB)?
Which three are true about an application seed pluggable database (PDB)?
Signup and view all the answers
When backing up to the Oracle Fast Recovery Area (FRA), you determine that the backup takes too long and suspect a performance bottleneck. Which two are true about diagnosing and tuning these problems?
When backing up to the Oracle Fast Recovery Area (FRA), you determine that the backup takes too long and suspect a performance bottleneck. Which two are true about diagnosing and tuning these problems?
Signup and view all the answers
Study Notes
Oracle Database Administration II
Exam 1Z0-083
- Topics: Oracle Database Administration II, Oracle 19c, Oracle Multitenant, Recovery Manager (RMAN), Automatic Workload Repository (AWR), Automatic Database Diagnostic Monitor (ADDM), Manageability Monitor (MMON)
Passing-sure 1Z0-083 Study Materials
- Exam dumps for Oracle Database Administration II
- IT Certification Guaranteed
Key Features
- Oracle Database 19c
- Container database (CDB) and pluggable database (PDB)
- Common table, FIN.REVENUE, in two PDBs
Gathering Optimizer Statistics
- Executing DBMS_STATS.GATHER_DATABASE_STATS while connected to CDB$ROOT gathers object statistics in all open PDBs
- Executing DBMS_STATS.GATHER_DATABASE_STATS while connected to a PDB opened in read/write mode gathers object statistics for that PDB
Threshold Server-Generated Alerts
- Used to diagnose and fix problems
- Situations include:
- When free space in a dictionary managed tablespace falls below a specified percentage
- When free space in a locally managed tablespace falls below a specified percentage
- When the number of logons per second exceeds a specific value
Creating an Application PDB
- Two methods:
- Create an application seed, synchronize it with HR_ROOT, and then create the PDB1 application PDB
- Create the PDB1 application PDB and synchronize it with HR_ROOT
Automatic Execution of Operating System Scripts
- During silent mode installation starting from Oracle Database 19c
- The response file can specify the path of the sudo program
- Silent install always runs operating scripts automatically
Recovery Operations
- Without using Recovery Manager (RMAN)
- Situations include:
- A lost PFILE can be re-created from alert.log using SQL*PLUS
- A lost index tablespace can be re-created without performing any recovery
- A lost password file can be manually re-created with the orapwd utility
Automatic Workload Repository (AWR)
- By default, AWR snapshots are taken every 60 minutes
- Its collection level is determined by the value of the STATISTICS_LEVEL database parameter
- By default, AWR snapshots are retained for 7 days
- The taking of AWR snapshots can be disabled
Transparent Data Encryption (TDE)
- Uses a single master key for a database
- Stores the current and all past master keys in the keystore
- Master encryption keys are managed by Oracle Database Vault
- Can encrypt data at the column level
Backup-Based Duplicate Database
- Two prerequisites:
- Connecting to an auxiliary instance
- Creating a password file for an auxiliary instance
Diagnosing Oracle Database Failure Situations
- Using Data Recovery Advisor
- Two true statements:
- Data Recovery Advisor can proactively check for failures
- Data Recovery Advisor can be used if a database is closed
Flashback Technologies
- Depend on the availability of relevant undo data in the undo tablespace
- Statements include:
- FLASHBACK TABLE customers TO TIMESTAMP TO_TIMESTAMP('2013-02-04 09:30:00', 'YYYY-MM-DD HH:MI:SS');
- SELECT * FROM customers AS OF SCN 123456;
- FLASHBACK TABLE customers TO BEFORE DROP;
SYSBACKUP Privilege
- Three true statements:
- They can view data from any data dictionary view or dynamic performance view
- They can view data from any user-defined tables
- They can create any table
RMAN Archival Backups
- Three true statements:
- All archive logs are retained after an archival backup is taken, until the next archival backup is taken of the same database
- The SPFILE is included in the archival backup
- Use of a recovery catalog is always required to support the creation and use of archival backups
Creating a Test Database
-
Method:
- Use DBCA to create a template from the existing database to contain the database structure with data files and then use the same template to create the database in the new location### Diagnosing and Tuning Performance Bottlenecks in RMAN Backup
-
Data files with a high value in V$BACKUP_ASYNC_IO.SHORT_WAITS are a potential performance bottleneck when asynchronous I/O is used.
-
If an RMAN BACKUP VALIDATE command takes noticeably less time than an actual backup, then write I/O is a likely bottleneck.
-
Data files with a high value in V$BACKUP_SYNC_IO.DISCRETE_BYTES_PER_SECOND are a potential performance bottleneck when synchronous I/O is used.
Note: The other options (B and D) are not true regarding diagnosing and tuning performance bottlenecks in RMAN backup.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Related Documents
Description
Pass Oracle certification exam with study materials and dumps. Get guaranteed IT certification with ExamsLabs.