RMAN backup script [message #73522] |
Fri, 14 May 2004 06:37 |
Calla
Messages: 5 Registered: May 2004
|
Junior Member |
|
|
can anyone take a look at my RMAN level 0 backup script, and tell the what is wrong:
CREATE SCRIPT Level_0
{
BACKUP INCREMENTAL LEVEL 0 TAG Level_0
DATABASE (CONTROLFILECOPY 'global01/RMAN_Backup/CTLFILE_DEXIT01.ctl')
PLUS ARCHIVELOG
FORMAT '/global01/RMAN_Backup/Level0/%U'
DELETE ALL INPUT;
}
There is no errors when I created the script, but when I executed it, the errors showed up:
RMAN-03015: error occurred in stored script Level_0
RMAN-03002: failure of backup command at 05/14/2004 10:38:35
RMAN-06042: PLUS ARCHIVELOG option is not supported with non-datafile backups
Appreciate any help. Thanks
Jadie
|
|
|
Re: RMAN backup script [message #73536 is a reply to message #73522] |
Tue, 18 May 2004 08:55 |
croca
Messages: 50 Registered: January 2004
|
Member |
|
|
Hello.
Why are you backing up controlfile and archived redologs at same time?, i mean, there is no problem with it, but you can have 2 different scripts and it will be much easier.
First scritp to backup archived redolog
and the last one could be a full database backup
including controlfiles.
If u need to rstore controlfiles, you can restore them from the last backup.
Hope it can help.
CR.
you can see detailed backup info regarding RMAN
implementing RMV from www.otools.com.ar
|
|
|