Exam 1z0-083 All QuestionsBrowse all questions from this exam
Question 58

Your container database, CDB1, has an application container, HR_ROOT, with an application PDB, HR_PDB1.

You have the required privilege to clone HR_PDB1 to container database CDB2, which does not contain HR_ROOT.

Which two are always true? (Choose two.)

    Correct Answer: B, E

    To clone HR_PDB1 from CDB1 to CDB2, a common user must exist in CDB2 with the CREATE PLUGGABLE DATABASE privilege since this user needs the permission to create the pluggable database in the target container database. Additionally, when the cloning process ends, the HR_PDB1 clone created in CDB2 will be in mount state, allowing the DBA to perform necessary configurations or checks before opening the PDB.

Discussion
mqdiriOptions: BE

BE After you create the application PDB, it is in mounted mode, and its status is NEW https://docs.oracle.com/en/database/oracle/oracle-database/21/multi/creating-application-pdb.html#GUID-88E61123-F651-47D7-9977-B589268EBD29

ismoilOptions: CE

C E I think

Neil107Options: BE

It's B and E.

cerebro2000xOptions: BE

BE for me you need to clone the app root first and the pdb [separately] CREATE PLUGGABLE DATABASE hr_root_dev AS APPLICATION CONTAINER FROM hr_root@link_hr_root;

cerebro2000x

CREATE PLUGGABLE DATABASE operations_dev FROM operations@link_operations

2211094Options: CE

CE C===To ensure data integrity E===According to Oracle documentation, after the cloning process is completed, the cloned PDB will be in the mount state. This allows the DBA to perform any additional configurations or checks before opening the PDB. https://docs.oracle.com/en/database/oracle/oracle-database/19/multi/cloning-a-pdb.html#GUID-D4900E43-DF38-4629-9A1F-D1C11EC8EC8F

_gio_Options: BE

Sure of BE https://docs.oracle.com/en/database/oracle/oracle-database/19/multi/cloning-a-pdb.html#GUID-D4900E43-DF38-4629-9A1F-D1C11EC8EC8F

ErikJanssenOptions: BC

BC I think. After looking through https://oracle-base.com/articles/19c/multitenant-dbca-pdb-remote-clone-19c E is not correct, the remote pdb is open read write after being cloned. C could be true; Source database needs to be readonly if remote CDB is not in archivelog mode or does not have local undo enabled.

jareachOptions: DE

D, E in my opinion.

Neil107Options: BE

It's B and E.

CyborgQOptions: BD

B,D are correct E incorrect: the clone can be done in read/write mode and the copy is in read/write mode

SimoneF

I didn't find any support to this claim. On the contrary, everything leads to think that, even in open mode, your cloned PDB will be mounted after the creation: "After you create the PDB, it is in mounted mode, and its status is NEW. " https://docs.oracle.com/en/database/oracle/oracle-database/21/multi/cloning-a-pdb.html#GUID-D4900E43-DF38-4629-9A1F-D1C11EC8EC8F

veginhaOptions: BE

BE, but I'm not sure. Anyone know this?