Which three Oracle database space management features will work with both Dictionary and Locally managed tablespaces?
Correct : A, D, E
Dictionary-managed tablespaces (DMTs) use the data dictionary for extent management, whilelocally managed tablespaces (LMTs) use bitmaps. Let's evaluate compatibility:
A . Capacity planning growth reports based on historical data in the Automatic Workload Repository (AWR).
True. AWR tracks space usage (e.g., DBA_HIST_TBSPC_SPACE_USAGE) regardless of tablespace type, enabling growth reports for both DMTs and LMTs.
Mechanics:MMON collects metrics like segment growth, stored in SYSAUX, accessible via EM or scripts.
Practical Use:Helps predict when to add data files, universal across management types.
B . Online table segment shrink.
False. ALTER TABLE ... SHRINK SPACE requires LMTs with Automatic Segment Space Management (ASSM), unavailable in DMTs, which lack bitmap-based free space tracking.
Why Incorrect:DMTs use freelists, incompatible with shrink operations.
C . Online index segment shrink.
False. Like tables, ALTER INDEX ... SHRINK SPACE requires LMTs with ASSM, not supported in DMTs.
Why Incorrect:Same limitation as B; DMTs can't compact online.
D . Oracle Managed Files (OMF).
True. OMF automates file naming and placement (via DB_CREATE_FILE_DEST) for both DMTs and LMTs, agnostic to extent management.
Mechanics:Example: CREATE TABLESPACE ts1; creates an OMF file in either type.
Edge Case:DMTs are rare in 23ai, but OMF still applies.
E . Automatic data file extension (AUTOEXTEND).
True. AUTOEXTEND ON allows data files to grow as needed, supported in both DMTs and LMTs since early versions.
Mechanics:ALTER DATABASE DATAFILE ... AUTOEXTEND ON NEXT 100M; works universally.
Start a Discussions
Which three statements are true about using SQL*Plus?
Correct : A, E, F
A .True. sqlplus @script.sql works from shell scripts.
B .False. RMAN uses its own client, not SQL*Plus.
C .False. Bundled with Oracle DB software.
D .False. Command-line only; no GUI in 23ai.
E .True. @script runs scripts interactively.
F .True. Commands like SHOW PARAMETER are unique.
Start a Discussions
Which three statements are true about an SPFILE?
Correct : A, C, E
A .True. CREATE SPFILE FROM PFILE works when idle.
B .False. Includes dynamic parameters too.
C .True. CREATE PFILE FROM SPFILE generates a PFILE.
D .False. A PFILE can start the instance if no SPFILE exists.
E .True. Dynamic parameters (e.g., DB_CACHE_SIZE) are modifiable.
Start a Discussions
What are Oracle Database Metrics?
Correct : A, C
A .True. Metrics (e.g., V$SYSMETRIC) use thresholds for alerts.
B .False. Metrics aren't tied to email notifications directly.
C .True. Metrics measure rates (e.g., IOPS, transactions/sec).
D .False. EMCC uses metrics, but they're DB-level, not EM-specific.
E .False. Metrics exist in the DB, not just EMCC.
Start a Discussions
Which statement is true about the PDB_DBA role granted to a local user during the creation of a new PDB?
Correct : A
A .True. PDB_DBA grants admin rights (e.g., CREATE SESSION, ALTER SYSTEM) within the PDB.
B .False. DDL on objects requires ownership or explicit grants.
C .False. User management needs CREATE USER privilege, not inherent.
D .False. It includes multiple privileges, not none.
Start a Discussions