Hi,
Is it possible to restore(Point in time recovery) only PDB from full database backup.
For instance:
i have a CDB database with 3 PDBs(PDB1,PDB2,PDB3) and i am taking a full database backup on 01-JUN-2019 using command "backup database plus archivelog".
Now today(04-JUN-2019). i want to restore only PDB2 back to 01-JUN-2019. is it possible . can i use below command to do that ?
RUN {
SET UNTIL TIME "TO_DATE('15-MAY-2019 05:45:00','DD-MON-YYYY HH24:MI:SS')";
RESTORE PLUGGABLE DATABASE PDB2;
RECOVER PLUGGABLE DATABASE PDB2 AUXILIARY DESTINATION='/u02/aux';
}
Please help