Full Online Backup using RMAN
23 November 2009
607 views
No Comment
Your database has to be in archive log mode for this script to work.
Code:
RMAN> run {
2> # backup the database to disk
3> allocate channel d1 type disk;
4> backup
5> full
6> tag full_db
7> format ‘/backups/db_%t_%s_p%p’
8> (database);
9> release channel d1;
10> }
Google Search: Full Online Backup using RMAN
DB Error Code: Full Online Backup using RMAN












Leave your response!