nerdexam
Oracle

1Z0-052 · Question #225

Due to media failure you lost one of the data files belonging to the USERS tablespace, and the tablespace is not available to use. Which statement regarding the status of the database is true?

The correct answer is A. The database remains open. In Oracle, losing a data file from a non-critical tablespace like USERS does not crash the instance - the database stays open while only the affected tablespace becomes unavailable.

Performing Backup and Recovery

Question

Due to media failure you lost one of the data files belonging to the USERS tablespace, and the tablespace is not available to use. Which statement regarding the status of the database is true?

Options

  • AThe database remains open.
  • BThe database gets dismounted.
  • CThe database becomes read only.
  • DThe database instance gets aborted.
  • EThe database gets shut down automatically.
  • FThe status of the database depends on the status of the USERS tablespace.

How the community answered

(55 responses)
  • A
    76% (42)
  • B
    11% (6)
  • C
    4% (2)
  • D
    7% (4)
  • E
    2% (1)

Why each option

In Oracle, losing a data file from a non-critical tablespace like USERS does not crash the instance - the database stays open while only the affected tablespace becomes unavailable.

AThe database remains open.Correct

Oracle is designed to isolate failures at the tablespace or datafile level. When a media failure affects a non-SYSTEM, non-UNDO tablespace like USERS, Oracle marks the affected datafile offline and the tablespace becomes unavailable, but the database instance itself continues running. Only failures involving the SYSTEM tablespace or active undo segments force the instance to abort.

BThe database gets dismounted.

Dismounting would remove the database's association with its control file, which does not occur from a single datafile media failure in a non-critical tablespace.

CThe database becomes read only.

Read-only mode is an administrative state set explicitly by a DBA; it is not triggered automatically by a media failure.

DThe database instance gets aborted.

Instance abort (ABORT) occurs from internal errors or SYSTEM/UNDO failures, not from a lost USERS datafile.

EThe database gets shut down automatically.

Automatic shutdown is not triggered by a non-SYSTEM, non-UNDO tablespace failure; Oracle keeps the instance running to allow recovery actions.

FThe status of the database depends on the status of the USERS tablespace.

The USERS tablespace status affects only access to its data; it does not conditionally determine whether the database itself remains open or closes.

Concept tested: Oracle database availability during non-critical tablespace media failure

Source: https://docs.oracle.com/en/database/oracle/oracle-database/19/bradv/user-managed-database-backups.html

Topics

#media failure#data file loss#tablespace availability#database status

Community Discussion

No community discussion yet for this question.

Full 1Z0-052 Practice