Backup and recover CDB using Rman

preview_player
Показать описание
Backup and Recover a whole of CDB

first, If the target CDB is not in ARCHIVELOG mode, then , you must enable archive log mode to do this please following the next steps.

archive log list
alter system set log_archive_dest_1='location=/u01/arch' scope=both;
shutdown immediate
startup mount
alter database archivelog;
alter database open;
archive log list

Do you know how to Back up a Whole CDB?
Do you know how to Perform Complete Recovery of a Whole CDB?
Do you know how to Validate a Whole CDB?
Do you know how to Report in CDB?

rman target /
list backup;
shutdown database
startup mount
restore database
recover database
alter database open

In next session , we going to learn the following topics :
How to backup root
How to Back Up a specific PDB
How to Perform Complete Recovery of PDB
How to Validate PDB and how to Report in PDB
Рекомендации по теме
Комментарии
Автор

Hello, if we take rman backup of pdb from one server and we want to restore on another cdb, is possible then how

AltafHussain-xvfs