Backup of a Container Database (CDB) and a Pluggable Database (PDB) Oracle in detail step by step I am sharing the are step-by-step instructions to backup a CDB and PDBs in Oracle to a custom location: Database name: SQL> select name from v$database; NAME --------- DB19 PDB name: SQL> show pdbs CON_ID CON_NAME OPEN MODE RESTRICTED ---------- ------------------------------ ---------- ---------- 2 PDB$SEED READ ONLY NO 3 PDB1 READ WRITE NO Database is on OCI VM DB system (DBCS). DB version is 19c Create Backup Directory mkdir -p /u01/app/oracle/backup/DB19 Full CDB and PDB backup A full backup of the CDB you are also doing ...