Re: RMAN Incremental Level 1 if Level 0 Fails
From: Mladen Gogala <gogala.mladen_at_gmail.com>
Date: Tue, 4 Oct 2011 14:54:36 +0000 (UTC)
Message-ID: <pan.2011.10.04.14.54.36_at_gmail.com>
On Tue, 04 Oct 2011 05:38:25 -0700, oraclesandiego wrote:
Date: Tue, 4 Oct 2011 14:54:36 +0000 (UTC)
Message-ID: <pan.2011.10.04.14.54.36_at_gmail.com>
On Tue, 04 Oct 2011 05:38:25 -0700, oraclesandiego wrote:
> Thanks to David Fitzjarrell for replying to my previous question.
>
> RMAN is setup for a level 0 weekly, and a level 1 cumulative incremental
> daily.
>
> Is there a way to configure RMAN so that if the level 0 backup fails,
> the subsequent level 1
> backups will be cumulative incremental since the last successful level 0
> backup?
BACKUP INCREMENTAL 1 CUMULATIVE should do the trick. There is also the little thingy called "shell scripting" that can be used to address various problems. This is how it works:
rman cmfile=$RMNCOMMANDFILE
if [ $? = 1 ];
perform corrective action
fi
-- http://mgogala.byethost5.comReceived on Tue Oct 04 2011 - 09:54:36 CDT