Which three statements are true about dynamic performance views?
A,B,C
Explanation:
A .True. V$ views reflect real-time memory data, not consistent snapshots.
B .True. V$FIXED_TABLE lists all V$ views.
C .True. Data comes from memory structures and data dictionary metadata.
D .False. Owned by SYS, not SYSTEM.
E .False. Some V$ views are accessible in MOUNT state.
Reference:Oracle Database Reference 23ai, "Dynamic Performance Views."
In which two ways would you disable timing information collected for wait events and much of the
performance monitoring capability of the database?
A,D
Explanation:
A .True. TIMED_STATISTICS = FALSE disables timing data collection.
B .False. No such procedure exists.
C .False. No TIMED_STATISTICS_LEVEL parameter exists.
D .True. STATISTICS_LEVEL = BASIC disables most performance monitoring.
E .False. No such procedure exists.
Reference:Oracle Database Reference 23ai, "Initialization Parameters."
Which statement regarding PDBs (Pluggable Databases) is correct?
A
Explanation:
A .True. Any PDB except PDB$SEED can be dropped.
B .False. Source PDBs of refreshable clones can be dropped after cloning.
C .False. Dropping an application root requires explicit handling of PDBs.
D .False. Relocation doesn’t mandate dropping the source PDB.
Reference:Oracle Multitenant Administrator’s Guide 23ai, "Dropping a PDB."
Which three statements are true about Deferred Segment Creation in Oracle databases?
C,D,E
Explanation:
A .False. IOTs require immediate segment creation.
B .False. SYS-owned tables don’t use deferred creation.
C .True. Default since 11gR2, continued in 23ai.
D .True. Indexes inherit this attribute unless overridden.
E .True. Sessions can alter this via DEFERRED_SEGMENT_CREATION.
Reference:Oracle Database Concepts 23ai, "Deferred Segment Creation."
Which two statements are true regarding Oracle database space management within blocks
managed by Automatic Segment Space Management (ASSM)?
A,C
Explanation:
A .True. ASSM categorizes blocks (e.g., 0-25%, 25-50%) for efficient space use.
B .False. Updates may cause chaining/migration, not always relocation.
C .True. ASSM optimizes inserts into suitable blocks.
D .False. ASSM uses a bitmap, not necessarily the first block.
E .False. PCTFREE is segment-specific, not universally 10%.
Reference:Oracle Database Concepts 23ai, "Automatic Segment Space Management."
Which two statements are true about views used for viewing tablespace and datafile information?
C,E
Explanation:
A .False. V$TABLESPACE doesn’t show free space directly.
B .False. It’s from the control file, not the data dictionary.
C .True. Renaming in MOUNT state updates DBA_DATA_FILES post-open.
D .False. DBA_TABLESPACES shows attributes, not free space directly (use DBA_FREE_SPACE).
E .True. V$TABLESPACE reflects control file data.
Reference:Oracle Database Reference 23ai, "V$TABLESPACE, DBA_DATA_FILES."
Which advisor is used to detect missing or stale object statistics?
B
Explanation:
B .True. The SQL Statistics Advisor (new in 23ai) identifies stale or missing statistics. Others focus on
tuning, performance analysis, or access paths.
Reference:Oracle Database SQL Tuning Guide 23ai, "SQL Statistics Advisor."
Which three statements are true about row chaining and row migration done by Oracle database
block space management?
A,B,C
Explanation:
A .True. Migration updates index ROWIDs.
B .True. Updates can migrate rows if space is insufficient.
C .True. Large updates can chain rows across blocks.
D .False. Chained rows may span blocks but aren’t required to.
E .False. Inserts don’t migrate; they chain if too large initially.
Reference:Oracle Database Concepts 23ai, "Row Chaining and Migration."
Which two are true about shrinking a segment online?
A,D
Explanation:
A .True. ROW MOVEMENT must be enabled for SHRINK SPACE.
B .False. Indexes and IOTs can be shrunk with CASCADE.
C .False. No such constraint requirement.
D .True. ASSM is required for online shrinking.
E .False. No primary key requirement.
Reference:Oracle Database SQL Language Reference 23ai, "SHRINK SPACE."
Your database instance is started with an SPFILE. A PFILE is also available. You execute this command:
ALTER SYSTEM SET DB_CACHE_SIZE=100K; Where does the value change?
B
Explanation:
B .True. Without SCOPE, ALTER SYSTEM defaults to BOTH (memory and SPFILE); PFILE isn’t updated
unless manually recreated.
Reference:Oracle Database Administrator’s Guide 23ai, "Managing Initialization Parameters."