Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RMAN Script
> Hi list,
>
> Need a little help with this, have seen in metalink both ways with and without the equal (=) sign. What is wrong with this script, am getting an error in SETSIZE; I removed it and the same error.
>
> run
> {
> allocate channel c1 type disk
> format '/u08/backups/rman/BD_%d_%U';
>
> allocate channel c2 type disk
> format '/u08/backups/rman/ARCH_%d_%U';
>
> set limit channel c1 kbytes=2000000;
> set limit channel c2 kbytes=2000000;
>
> setsize=2000;
> filesperset=2;
>
> backup database include current controlfile
> tag 'Backup Full';
> release channel c1;
> backup archivelog all
> tag 'Backup Archives';
> release channel c2;
> }
>
> TIA,
>
>
> Ramon E. Estevez
> restevez_at_blh.com.do
> 809-535-8994
>
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: =?iso-8859-1?Q?Ram=F3n_Estevez?= INET: REstevez_at_blh.com.do Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Tue Nov 25 2003 - 11:19:24 CST