Incremental level 1 merge backup [message #295393] |
Tue, 22 January 2008 04:30 |
mkb08
Messages: 4 Registered: January 2008
|
Junior Member |
|
|
Hi all,
My level 0 backup script is:
run {
configure controlfile autobackup off;
backup incremental level 0 tag level_0
format '/bkup1/rbackup/%d_full_bkup_%t.bak' (database);
backup current controlfile format '/bkup1/rbackup/%d_%s_%T_CNTRL' tag CONTRLFL;
backup spfile format '/bkup1/rbackup/%d_%s_%T_SPFILE' tag SPFILE;
sql 'alter system archive log current;
backup archivelog all format '/bkup1/rbackup/%d_%s_%T_ARC' tag ARCLOG;
configure controlfile autobackup on;
}
This works fine without any problem. My level 1 incremental merge backup script is:
run {
configure controlfile autobackup off;
recover copy of database with level_0;
backup incremental level 1 for recover of copy with tag level_0 database;
backup current controlfile format '/bkup1/rbackup/%d_%s_%T_CNTRL' tag CONTRLFL;
backup spfile format '/bkup1/rbackup/%d_%s_%T_SPFILE' tag SPFILE;
sql 'alter system archive log current;
backup archivelog all format '/bkup1/rbackup/%d_%s_%T_ARC' tag ARCLOG;
configure controlfile autobackup on;
When I run the level 1 backup i am getting the following error:
MAN> run
2> {
3> backup incremental level 1 for recover of copy with tag level_0 database;
4> recover copy of database with tag level_0;
5> backup current controlfile format '/bkup1/rbackup/%d_%s_%T_CONTROL' tag "CNTRLFL";
6> backup spfile format '/bkup1/rbackup/%d_%s_%T_SPFILE' tag "SPFILE";
7> sql 'alter system switch logfile';
8> backup archivelog all format '/bkup1/rbackup/%d_%s_%T_ARCHIVE' tag "ARCLOG";
9> }
Starting backup at 22-JAN-08
using channel ORA_DISK_1
Before in kgllkdl(), hd=1a4e5f8.
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of backup command at 01/22/2008 14:00:55
RMAN-00600: internal error, arguments [13215] [INVALID] [] [] []
RMAN> **end-of-file**
Why the script fails.
Manoj
|
|
|
|
Re: Incremental level 1 merge backup [message #295407 is a reply to message #295402] |
Tue, 22 January 2008 05:01 |
mkb08
Messages: 4 Registered: January 2008
|
Junior Member |
|
|
Thank you for your reply. I don't have access to metalink because i am using Oracle ASFU license. Also it is not possible for upgradation atleast for 6 months.
So, is there any other way to achieve this. Normal incremental level backups work fine. But it will create many files and will occupy lot of space. So I want to avoid that method.
|
|
|
|
|
|
|