1Z0-052 · Question #223
As a database administrator you spend a lot of time observing and setting various storage parameter values for your application tables in order to gain performance benefits. Which task would you…
The correct answer is F. Move the application tables to automatic segment space management tablespace. Automatic Segment Space Management (ASSM) tablespaces use bitmaps to manage free space automatically, eliminating the need to manually tune segment storage parameters.
Question
As a database administrator you spend a lot of time observing and setting various storage parameter values for your application tables in order to gain performance benefits. Which task would you perform to reduce this overhead?
Options
- ACoalesce the application tables at a regular interval.
- BExport and Import the application tables a regular interval.
- CDrop and recreate the application tables at a regular interval.
- DMove the application tables to a tablespace with less space usage.
- EDistribute the application tables across multiple tablespaces depending on usage.
- FMove the application tables to automatic segment space management tablespace.
How the community answered
(34 responses)- B15% (5)
- C3% (1)
- D6% (2)
- E3% (1)
- F74% (25)
Why each option
Automatic Segment Space Management (ASSM) tablespaces use bitmaps to manage free space automatically, eliminating the need to manually tune segment storage parameters.
Coalescing a tablespace merges adjacent free extents but does not automate or eliminate the need to manually set storage parameters for individual segments.
Exporting and importing tables reorganizes storage at a point in time but does not reduce ongoing overhead because storage parameters must still be managed manually afterward.
Dropping and recreating tables periodically is disruptive and does not automate segment storage parameter management in any way.
Moving tables to a tablespace with less space usage changes physical placement but does not automate segment storage parameter management.
Distributing tables across multiple tablespaces based on usage adds management complexity rather than reducing the overhead of setting and monitoring storage parameters.
Moving tables to an ASSM tablespace removes the need to manually configure PCTUSED, FREELISTS, and FREELIST GROUPS parameters because Oracle uses bitmap blocks to track segment free space automatically. This directly reduces the DBA overhead of observing and tuning storage parameters for application tables. ASSM is the Oracle-recommended approach for simplifying segment space management in modern databases.
Concept tested: Oracle Automatic Segment Space Management (ASSM) tablespace
Source: https://docs.oracle.com/en/database/oracle/oracle-database/19/admin/managing-tablespaces.html
Topics
Community Discussion
No community discussion yet for this question.