Oracle Database 12c: Advanced Administration — Question 44

Your multitenant container database (CDB) contains multiple pluggable databases (PDBs). You execute the command to create a common user:

SQL> CREATE USER c##a_admin -

IDENTIFIED BY password -

DEFAULT TABLESPACE users -

QUOTA I00M ON users -
TEMPORARY TABLESPACE temp;
Which statement is true about the execution of the command?

Answer options

Correct answer: A

Explanation

The correct answer is A because creating a common user in a CDB ensures that it is available in all associated PDBs and utilizes the CDB's tablespaces for schema objects. Option B is incorrect as the command does not require all PDBs to have the specified tablespaces. Option C is wrong because the absence of the container=all clause does not prevent the command from executing successfully. Option D is misleading as it implies a dependency on the PDB's tablespace configuration, which is not a requirement for creating a common user.