Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: RMAN sample script for Linux
Kalle wrote:
> Hi,
>
> I have couple of instances running on Linux (9iRel2), now I would like
> to do an online backup with RMAN to a disk and schedule it to happen
> every night.
>
> I wonder if you have a sample shell script to do this and could you post
> it here.
>
> TIA
> Kalle
>
HI
This is CATALOG version...
Best regards
-- www.konsultancIT.pl Oracle&MS-SQL consultingReceived on Tue Jun 24 2003 - 01:28:22 CDTrun { sql "alter system archive log current"; allocate channel ch1 type disk; backup full format '/oracle/backup_rman/bckF_%s_%p_%d_%u' (database include current controlfile); sql "alter system archive log current"; backup format '/oracle/backup_rman/bckA_%s_%p_%d_%u' (archivelog all delete input); }
- application/x-sh attachment: backupFull.sh
![]() |
![]() |