How to use rman backup a noarchivelog database

gawin_wang發表於2014-04-11
If a database runs in noarchivelog mode, then the only valid database backup is a consistent backup. So we need perform a clean shutdown first, then start the database in mount status.

1 Shutdonw the database consistently and then mount it.

shutdown immediate;
startup force DBA;
shutdown immediate;
startup mount;

2 connect the target database with rman and run the backup database command.
RMAN> backup database;
RMAN> backup as copy database;


3 open the database;
alter database open;



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29557342/viewspace-1140218/,如需轉載,請註明出處,否則將追究法律責任。

相關文章