Which of the following is a prerequisite for running DBMS_TDB.CHECK_DB to a successful completion?

Which of the following is a prerequisite for running DBMS_TDB.CHECK_DB to a successful
completion?

Which of the following is a prerequisite for running DBMS_TDB.CHECK_DB to a successful
completion?

A.
The database must be in read-write mode.

B.
The database must have no external files.

C.
The database must open in read-only mode.

D.
The database must be mounted but not opened.



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Helcio

Helcio

This example illustrates the use of CHECK_DB with a database that is open read-write:

SQL> SET SERVEROUTPUT ON
SQL> DECLARE
db_ready BOOLEAN;
BEGIN
db_ready := DBMS_TDB.CHECK_DB(‘Microsoft Windows IA (32-bit)’);
END;
/

Database is not open READ ONLY. Please open database READ ONLY and retry.

PL/SQL procedure successfully completed.