Oracle 11g Database New Features Interview Questions and Answers
Oracle 11g Database New Features Interview Questions and Answers
1. Database Replay
2. The SQL Performance Analyzer
3. Online Patching in Oracle Database Control
4. Automatic Diagnostic Repository (ADR)
5. Data Recovery Advisor
6. Automatic Memory Management
7. Invisible Indexes
8. Read-Only Tables
9. Shrinking Temporary Tablespaces and Tempfiles
10. Server Result Cache
11. SQL Tuning Automation
12. SQL Plan Management
13. Database ADDM
14. New SYSASM Privilege for ASM Administration
15. Enhanced Block Media Recovery
16. VALIDATE Command
17. Configuring an Archived Redo Log Deletion Policy
18. Active Database Duplication
19. Virtual Private Catalogs
20. ASM Restricted Mode
21. Checking Diskgroup
22. The FORCE option with Drop Diskgroup Command
23. Active Data Guard is a new option for Oracle Database 11g Enterprise
Edition
ASM Rolling Upgrades
Database Replay
Database Replay (sometimes named as Workload Replay) feature in Oracle11g
allows you to reproduce the
production database conditions in a testing environment.In other words,
with this feature you can capture the
actual workload on a production system and replay it in a test system.
This way, you can analyze the condition of the production database without
working on the actual production database.
This feature enables you to test the impact of applying changes on a
production database. These changes could be database upgrades, switching
to RAC, application upgrades, operating system upgrades or storage system
changes.
The SQL Performance Analyzer
The SQL Performance Analyzer (SPA) aims at measuring the impact of
applying any change on the database on the performance of the SQL
statements execution. If it finds out performance degradation in one or
data in the corrupt blocks will result in an error message, telling the
user that the data block is corrupt.
VALIDATE Command
You can use the new command VALIDATE to manually check for physical and
logical corruptions in datafiles,backup sets, and even individual data
blocks. The comma nd by default checks for physical corruption. You can
optionally specify CHECK LOGICAL . Corrupted blocks are reported in
V$DATABASE_BLOCK_CORRUPTION.
Configuring an Archived Redo Log Deletion Policy
You can use RMAN to create a persistent configuration that controls when
archived redo logs are eligible for
deletion from disk or tape. This deletion policy applies to all archiving
destinations, including the flash recovery area. When the policy is
configured, it applies on the automatic deletion of the logs in the flash
recovery area and the manual deletion by the BACKUP ... DELETE and DELETE
... ARCHIVELOG commands.
To enable an archived redo log deletion policy, run the CONFIGURE
ARCHIVELOG DELETION POLICY BACKED UP n TIMES command with the desired
options.
Active Database Duplication
In Oracle Database 11g, you can directly duplicate a data base over the
network without having to back up and provide the source database files.
This direct database duplication is called active database duplication. It
can be done either with Database Control or through RMAN. Instance that
runs the duplicated database is called auxiliary instance.
Virtual Private Catalogs
In Oracle Database 11g, you can restrict access to the recovery catalog by
granting access to only a subset of the metadata in the recovery catalog.
The subset that a user has read/write access to is termed as virtual
private catalog, or just virtual catalog. The central or source recovery
catalog is now called the base recovery catalog.
ASM Restricted Mode
In Oracle 11g, you can start the ASM instance in restricted mode. When in
restricted mode, databases will not be permitted to access the ASM
instance. Also, individual diskgroup can be set in restricted mode.
Checking Diskgroup
Starting from Oracle Database 11g, you can validate the internal
consistency of ASM diskgroup metadata using the ALTER DISKGROUP ... CHECK