备份指定pdb
rman target /
run{
allocate channel C1 device type disk;
backup as compressed backupset pluggable database PDB1_WHS include current controlfile format '/backup/PDB1WHS%d_%U.full';
release channel C1 ;
}
备份指定pdb的某个表空间
rman target /
run{
allocate channel C1 device type disk;
backup tablespace PDB1_WHS:SYSAUX include current controlfile format '/backup/PDB1_WHSSYSAUX%d.TBS';
release channel C1 ;
}