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

Which two are true about creating RMAN backups for an Oracle container database? (Choose two.)

    Correct Answer: B, E

    The BACKUP DATABASE command will create a pluggable database (PDB) backup when RMAN is connected to a PDB, making B correct. Additionally, the BACKUP PLUGGABLE DATABASE command can be used to back up CDB$ROOT, making E correct. Tablespaces from different PDBs with identical names do not have to be backed up by connecting RMAN separately to each PDB, contradicting option A. Therefore, the two correct statements are B and E.

Discussion
janwOptions: BE

E is correct tested: backup pluggable database "cdb$root". the quotes due to the $ symbol. it backups only the root container files (no pdb datafiles). tested CD: both incorrect Tested b: correct A is not correct due to the "must". you can connect to cdb and distinguish between tbs with same name in different pdbs with qualifying RMAN> BACKUP TABLESPACE pdb1:system, pdb1:sysaux, pdb1:users, pdb2:system;

arpz

Agree with B and E

erialOptions: BE

correct answers are b,e (d is false because "plus archive log" cannot be utilized when connected to a pdb)

flaviogcmeloOptions: BE

Reference: https://docs.oracle.com/en/database/oracle/oracle-database/19/bradv/backing-up-database.html#GUID-655DC5F5-FF8D-4A73-B67D-F5AAE20CA382

julicaOptions: AB

correct A,B

NiciMilo

A is wrong because you can connect to a CDB to perform the tablespace backup https://oracle-base.com/articles/12c/multitenant-rman-backup-recovery-cdb-and-pdb-12cr1#tablespace-and-datafile-backups

ObserverPLOptions: AB

B is CORRECT, no doubts here as I see. D is NOT correct: Starting backup at 20-MAY-21 skipping archived logs when connected to a PDB backup cancelled because there are no files to backup Finished backup at 20-MAY-21 E is CORRECT: RMAN> RUN { allocate channel ch1 type disk; BACKUP as COMPRESSED BACKUPSET INCREMENTAL LEVEL 0 pluggable database "CDB$ROOT" FORMAT '/u01/oracle/BACKUPS/%d_%T_%U.DB'; } 2> 3> 4> 5> 6> 7> allocated channel: ch1 channel ch1: SID=36 device type=DISK Starting backup at 20-MAY-21 ... piece handle=/u01/oracle/BACKUPS/CDB01_20210520_04vvbhh2_1_1.DB tag=TAG20210520T192730 comment=NONE channel ch1: backup set complete, elapsed time: 00:00:25 Finished backup at 20-MAY-21

asefaOptions: BE

B AND E

taotsumiauOptions: AB

correct A,B

dancymonkeyOptions: BE

BE A - This statement is incorrect. RMAN can back up tablespaces from multiple PDBs in a single operation when connected to the root container. It distinguishes tablespaces with the same name that belong to different PDBs.

_gio_Options: BE

A is false because I can BACKUP TABLESPACE T12CPDB1:SYSTEM, SYSAUX; also I can't backup SPFILE from app cdb or PDB

ScottLOptions: BE

B E correct

ScottLOptions: BE

BE Correct

nobody347Options: BD

I think B and D rman target='sys@pdb2' backup database plus archivelog; No any issues. E is wrong rman target=/ BACKUP PLUGGABLE DATABASE error message

RinDOptions: BD

BD https://docs.oracle.com/en/database/oracle/oracle-database/19/bradv/backing-up-database.html#GUID-B416FCDB-1EA1-48F8-8162-F9181A75B6BB To backup root: RMAN> BACKUP DATABASE ROOT;

RinD

Recheck and D is false. So BE are correct.

klever35Options: BD

I thinnk B D