Oracle Database 12c: Advanced Administration — Question 152

Examine the initialization parameter that is set in the PFILE:
DB_CREATE_FILE_DEST ='/u01/app/oracle/oradata/'
You execute the following command to create theCDB1. container database (CDB):

SQL>CREATEDATABASECDB1 -

DEFAULTTABLESPACE users -

DEFAULTTEMPORARY TABLESPACEtemp -

UNDO TABLESPACEundotbsl -

ENABLEPLUGGA3LEDATABASE -

SEED -
SYSTEMDATAFILESSIZE125M AUTOEXTEND ON NEXT10M MAXSIZEUNLIMITED
SYSAUXDATAFILESSIZE100M;
Which three statements are true?

Answer options

Correct answer: A, B, E

Explanation

The correct statement A indicates that a multitenant architecture is created where the root database is in read-write mode and the seed database in read-only mode. Option B is also correct as the initialization parameter allows for the use of Oracle Managed Files, which automatically manages the file locations. Option E is valid as well since the command specifies undotbs1 as the undo tablespace for both databases. Options C, D, and F are inaccurate in their description of database states and configurations.