Oracle® Database Recovery Manager Reference 10g Release 1 (10.1) Part Number B10770-02 |
|
|
View PDF |
allocOperandList::=
Text description of allocOperandList
A subclause specifying control options on a channel, which is a connection between RMAN and a database instance. Specify this clause on the following commands:
Syntax Element | Description |
---|---|
|
Specifies a connect string to the database instance where RMAN should conduct the backup or restore operations. Use this parameter to spread the work of backup or restore operations across different instances in an Oracle Real Application Clusters configuration. If you do not specify this parameter, and if you did not specify the See Also: "connectStringSpec" and "cmdLine" |
|
Specifies the format to use for the names of backup pieces that are created on this channel. If you do not specify Because the channels correspond to server sessions on the target database, the You can specify up to four This parameter is useful if you allocate multiple disk channels and want each channel to write to a different directory. If you specify the See Also: "formatSpec" for available |
|
Controls the maximum number of input files that a BACKUP command can have open at any given time (the default is 8). Use this parameter to prevent "Too many open files" error messages when backing up a large number of files into a single backup set. |
|
Specifies the maximum size of each backup piece created on this channel. Specify the size in bytes, kilobytes ( |
|
Specifies parameters for the device to allocate. Do not use this port-specific string if you have specified See Also: Oracle Database Backup and Recovery Advanced User's Guide to learn how to integrate media management libraries |
Specifies one or more environment variables required by the media management vendor in the server session corresponding to this RMAN client. Because RMAN is a client program, the PARMS="ENV=(TAPE_SERVER=srv1)" |
|
Specifies which media library should be used on this PARMS="SBT_LIBRARY=/oracle/lib/mmv.so" |
|
|
Sets the maximum number of bytes (default), kilobytes ( |
|
Sends a vendor-specific command string to all allocated channels. See Also: Your media manager documentation to see whether this feature is supported and when it should be used. |
This example configures a persistent disk channel:
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT = '?/oradata/bkup_%U';
This example manually allocates an sbt
channel and then runs a whole database backup:
RUN { ALLOCATE CHANNEL c1 DEVICE TYPE sbt MAXPIECESIZE 800M; BACKUP DATABASE; }
This example configures a default media management library, then makes a database backup by using this library. Then, the example backs up the database again using a different library, then finally makes a third backup using the default library:
CONFIGURE DEFAULT DEVICE TYPE TO sbt; CONFIGURE CHANNEL DEVICE TYPE sbt PARMS="SBT_LIBRARY=/mediavendor/lib/mm_lib1.so"; BACKUP DATABASE; RUN { ALLOCATE CHANNEL c1 DEVICE TYPE sbt PARMS="SBT_LIBRARY=/mediavendor/lib/mm_lib2.so"; BACKUP DATABASE; } BACKUP ARCHIVELOG ALL;