Oracle Database 12c: Advanced Administration — Question 147

Examine the command to create a pluggable database (PDB):
SQL> CREATE PLUGGABLE DATABASE pdb2 FROM pdb1
FILE_NAME-_CONVERT = ('/disk1/oracle/pdb1/', '/disk2/oracle/pdb2/) PATH_PREFIX = '/disk2/oracle/pdb2';
Which two statements are true?

Answer options

Correct answer: A, C

Explanation

Option A is correct because pdb2 is indeed created by cloning pdb1 and starts in mount state. Option C is also correct as the tablespaces for pdb2 mirror those of pdb1. The other options are incorrect for various reasons, such as incorrect file locations or misconceptions regarding user object replication.