Oracle8i Recovery Manager User's Guide and Reference
Release 2 (8.1.6)

Part Number A76990-01

Library

Product

Contents

Index

Go to previous page Go to next page

2
Getting Started with Recovery Manager

This chapter describes how to get started using RMAN. It includes the following topics:

Setting Up Recovery Manager

Before using RMAN, familiarize yourself with the following topics:

Using Password Files

Typically, you need to use a password file when connecting to the target database over a non-secure Net8 connection, especially when you:

Setting NLS Environment Variables

Before invoking RMAN, set the NLS_DATE_FORMAT and NLS_LANG environment variables. These variables determine the format used for the time parameters in RMAN commands such as restore, recover, and report.

The following example shows typical language and date format settings:

NLS_LANG=american
NLS_DATE_FORMAT='Mon DD YYYY HH24:MI:SS'

Specifying Dates in RMAN Commands

When specifying dates in RMAN commands, the date string can be either:

Following are examples of typical date settings in RMAN commands:

backup archivelog from time 'SYSDATE-31' until time 'SYSDATE-14';
restore database until time "TO_DATE('12/20/98','MM/DD/YY')";

Specifying the Database Character Set

If you are going to use RMAN to connect to a non-mounted database and then mount the database later while RMAN is still connected, set the NLS_LANG variable so that it also specifies the character set used by the database.

A database that is not mounted assumes the default character set, which is US7ASCII. If your character set is different from the default, then RMAN returns errors after the database is mounted. To avoid this problem, set the NLS_LANG to specify the target database's character set. For example, if the character set is WE8DEC, you can set the NLS_LANG parameter as follows:

NLS_LANG=american_america.we8dec. 


Note:

You must set both NLS_LANG and NLS_DATE_FORMAT for NLS_DATE_FORMAT to be used. 


See Also:

Oracle8i Reference for more information on the NLS_LANG and NLS_DATE_FORMAT parameters, and Oracle8i National Language Support Guide

Determining the Snapshot Control File Location

When RMAN needs to resynchronize from a read-consistent version of the control file, it creates a temporary snapshot control file. The default name for the snapshot control file is port-specific. Use the set snapshot controlfile name command to change the name of the snapshot control file; subsequent snapshot control files that RMAN creates use the name specified in the command.

For example, start RMAN and then enter:

set snapshot controlfile name to '/oracle/dba/prod/snap_prod.ctl';

You can also set the snapshot control file name to a raw device. This operation is important for OPS databases in which more than one instance in the cluster use RMAN because server sessions on each node must be able to create a snapshot control file with the same name and location. For example, enter:

set snapshot controlfile name to '/dev/vgd_1_0/rlvt5';

Note that if one RMAN job is already backing up the control file while another needs to create a new snapshot control file, you may see the following message:

RMAN-08512: waiting for snapshot controlfile enqueue

Under normal circumstances, a job that must wait for the control file enqueue waits for a brief interval and then successfully retrieves the enqueue. Recovery Manager makes up to five attempts to get the enqueue and then fails the job. The conflict is usually caused when two jobs are both backing up the control file, and the job that starts backing up the control file first waits for service from the media manager.

See Also:

 

Using RMAN with a Multi-Threaded Server

RMAN cannot connect to the target database through a multi-threaded server (MTS) dispatcher: it requires a dedicated server process. Nevertheless, you can connect specified sessions to dedicated servers, even when your database is configured for MTS.

To ensure that RMAN does not connect to a dispatcher when the target database is configured to use the MTS architecture, the net service name used by RMAN must include (SERVER=DEDICATED) in the CONNECT_DATA attribute of the connect string.

To use RMAN with an MTS database:

Net8 configuration varies greatly from system to system. The following procedure illustrates only one method.

This scenario assumes that the following net service name in the tnsnames.ora file connects to the target database using the MTS architecture, where inst1 is a value of the SERVICE_NAMES initialization parameter:

inst1_mts =
  (description=
    (address=(protocol=tcp)(host=inst1_host)(port1521))
    (connect_data=(service_name=inst1)(server=shared))
  ) 


  1. Create a net service name in the tnsnames.ora file that connects to the non-shared SID. For example, enter:

    inst1_ded =
      (description=
        (address=(protocol=tcp)(host=inst1_host)(port1521))
        (connect_data=(service_name=inst1)(server=dedicated))
      )
    
    
  2. Connect using SQL*Plus using both the MTS and dedicated service names to confirm the mode of each session. For example, to connect to a dedicated session you can issue:

    SQL> connect sys/oracle@inst1_ded
    Connected.
    SQL> SELECT server FROM v$session WHERE sid = (SELECT DISTINCT sid FROM v$mystat);
    
    SERVER   
    ---------
    DEDICATED
    1 row selected.
    
    

To connect to an MTS session, you can issue:

SQL> connect sys/oracle@inst1_mts
Connected.
SQL> SELECT server FROM v$session WHERE sid = (SELECT DISTINCT sid FROM v$mystat);

SERVER   
---------
SHARED 
1 row selected.
  
  • Connect to the target database (and optionally the recovery catalog) using the dedicated service name. For example, enter:

    % rman target sys/oracle@inst1_ded catalog rman/rman@rcat
    

    See Also:

    Your operating system-specific Oracle documentation and your Net8 Administrator's Guide for a complete description of Net8 connect string syntax. 

    Deciding Whether to Use a Recovery Catalog

    Perhaps the most important decision you make when getting started with RMAN is whether to use a recovery catalog as the RMAN repository. This section outlines some of the costs and benefits associated with using and not using a recovery catalog. If you decide to create a catalog, see "Creating the Recovery Catalog".

    See Also:

    "Recovery Manager Repository" for an overview of the function of the RMAN repository. 

    Consequences of Using the Recovery Catalog as the RMAN Repository

    When you use a recovery catalog, RMAN can perform a wider variety of automated backup and recovery functions. For this reason, Oracle recommends that you use a recovery catalog with RMAN whenever possible.

    When you use a recovery catalog, RMAN requires that you maintain a recovery catalog schema as well as any associated space used by that schema. The size of the recovery catalog schema:

    If you use a recovery catalog, decide which database you will use to install the recovery catalog schema, and also how you will back up this database. If you use RMAN to back up several databases, you may wish to create a separate recovery catalog database and create the RMAN user in that database. Also, decide whether to operate this database in ARCHIVELOG mode, which is recommended.

    If you store the recovery catalog in a separate database, you need a small amount of disk space for the following:

    An additional benefit of maintaining a separate recovery catalog is that it is only unavailable at your discretion. Most of the space used in this database is devoted to supporting tablespaces, for example, the system, temp, and rollback tablespaces.

    Table 2-1 Typical Recovery Catalog Space Requirements for 1 Year
    Type of Space  Space Requirement 

    System 

    50 megabytes 

    Temp 

    5 megabytes 

    Rollback 

    5 megabytes 

    Recovery catalog 

    10 megabytes 

    Online redo logs 

    1 megabyte each (3 groups, each with 2 members) 

    If you have more than one database to back up, then you can create more than one recovery catalog and have each database serve as the other's recovery catalog. For example, assume you maintain two production databases, one called PRD1 and a second called PRD2. You can install the recovery catalog for PRD1 in the PRD2 database, and the recovery catalog for the PRD2 database in PRD1.

    Figure 2-1 Using Production Databases as Recovery Catalog Databases


    By allowing the production databases to serve as each other's recovery catalog, you avoid the extra space requirements and memory overhead of maintaining a separate recovery catalog database. This solution is not practical, however, if the recovery catalog databases for both reside in tablespaces on the same physical disk.


    Note:

    You must install the recovery catalog schema in a different database from the target database. If you do not, the benefits of using a recovery catalog are lost if you lose the database and need to restore. 



    WARNING:

    Ensure that the recovery catalog and target databases do not reside on the same disk. If they are on the same disks and you lose database, then you will probably lose the other. 


    See Also:

    Chapter 3, "Managing the Recovery Manager Repository" to learn how to manage the recovery catalog. 

    Consequences of Using the Control File as the RMAN Repository

    When you use a control file as the RMAN repository, RMAN still functions very effectively. If you choose not to use a recovery catalog, follow the guidelines in "Managing the RMAN Repository Without a Recovery Catalog". Specifically, make sure you understand which commands require a catalog, and develop a strategy for backing up the repository.

    Connecting to RMAN

    To use RMAN, you must first connect to it. This connection is necessary to:

    Whenever you start RMAN, you must connect to a target database. Note that RMAN connects you to the target database with the SYSDBA privilege: if you do not have this privilege, the connection fails.

    You have several options for how you connect. For example, you can start RMAN:

    This section includes the following sample Recovery Manager connection situations:

    Connecting to RMAN Without a Recovery Catalog

    In these examples, assume that:

    sys 

    User with SYSDBA privileges 

    target_pwd 

    The password for connecting as SYSDBA specified in the target database's orapwd file 

    target_str 

    The net service name for the target database 

    Connecting to RMAN Using Operating System Authentication

    If the target database does not have a password file, then the user must be validated using operating system authentication. You can use operating system authentication only if you connect locally, that is, RMAN and the target database reside on the same machine. You cannot connect to the target database using operating system authentication in conjunction with a net service name.

    1. At the UNIX command line, enter:

      % ORACLE_SID=PROD1; export ORACLE_SID
      
      
      
    2. Issue the following statement:

      % rman nocatalog
      
      
      
    3. At the RMAN prompt enter:

      RMAN> connect target /
      


      Note:

      You do not need to specify the SYSDBA option because RMAN uses this option implicitly and automatically. You must have the SYSDBA privilege to connect to the target database. 


    Connecting to RMAN Using Password Files

    If the target database uses password files, you can connect using a password. Use a password file for either local or remote access. You must use a password file if you are connecting remotely using a net service name.

    Connecting from the Operating System Command Line

    To connect from the operating system command line, enter the following, where sys_pwd is the password for SYS and target_str is the net service name for the target database:

    % rman target sys/target_pwd@target_str nocatalog
    
    Connecting from the RMAN Prompt

    Alternatively, start RMAN and connect to your target database from the RMAN prompt:

    % rman nocatalog
    RMAN> connect target sys/target_pwd@target_str
    

    See Also:

     

    Connecting to RMAN with a Recovery Catalog

    In these examples, assume that you maintain a recovery catalog and:

    sys 

    User with SYSDBA privileges 

    rman 

    Owner of the recovery catalog having RECOVERY_CATALOG_OWNER privilege 

    target_pwd 

    The password for connecting as SYSDBA specified in the target database's orapwd file 

    target_str 

    The net service name for the target database 

    cat_pwd 

    The password for user RMAN specified in the recovery catalog's orapwd file 

    cat_str 

    The net service name for the recovery catalog database 

    Connecting to RMAN Using Operating System Authentication

    If the target database does not have a password file, then the user must be validated using operating system authentication. You can use operating system authentication only if you connect locally, that is, RMAN and the target database reside on the same machine. You cannot connect to the target database using operating system authentication in conjunction with a net service name.

    1. If RMAN is running on the same machine as your target database, set the ORACLE_SID to the target database. For example, at the UNIX prompt type:

      % ORACLE_SID=PROD1; export ORACLE_SID
      
      
      
    2. Issue the following statement to connect to the recovery catalog as user RMAN:

      % rman catalog rman/cat_pwd@cat_str
      
      
      
    3. Once RMAN has started, issue a connect target command (which assumes that you have SYSDBA privileges):

      RMAN> connect target
      

    Connecting to RMAN Using Password Files

    If the target and recovery catalog databases use password files, then you can connect using a password. Use a password file for either local or remote access. You must use a password file if you are connecting remotely through a net service name.

    Connecting from the Operating System Command Line

    To connect to RMAN from the operating system command line, enter the following:

    % rman target sys/target_pwd@target_str catalog rman/cat_pwd@cat_str
    
    Connecting from the RMAN Prompt

    Alternatively, you can start RMAN and connect to the target database from the RMAN prompt:

    % rman
    RMAN> connect target sys/target_pwd@target_str 
    RMAN> connect catalog rman/cat_pwd@cat_str
    

    Connecting to an Auxiliary Database

    To use the duplicate command or to perform RMAN TSPITR, you need to connect to an auxiliary instance. In these examples, assume that:

    sys 

    User with SYSDBA privileges 

    rman 

    Owner of the recovery catalog having RECOVERY_CATALOG_OWNER privilege 

    target_pwd 

    The password for connecting as SYSDBA specified in the target database's orapwd file 

    target_str 

    The net service name for the target database 

    cat_pwd 

    The password for user RMAN specified in the recovery catalog's orapwd file 

    cat_str 

    The net service name for the recovery catalog database 

    aux_pwd 

    The password for connecting as SYSDBA specified in the auxiliary database's orapwd file. 

    aux_str 

    The net service name for the auxiliary database. 

    If the auxiliary database uses password files, then you can connect using a password. Use a password file for either local or remote access. You must use a password file if you are connecting remotely through a net service name.

    Connecting from the Operating System Command Line

    To connect to an auxiliary instance from the operating system command line, enter the following:

    % rman auxiliary sys/aux_pwd@aux_str
    
    

    To connect to the target, auxiliary, and recovery catalog databases, issue the following (all on one line):

    % rman target sys/target_pwd@target_str catalog rman/cat_pwd@cat_str \
    > auxiliary sys/aux_pwd@aux_str
    
    Connecting from the RMAN Prompt

    Alternatively, you can start RMAN and connect to the auxiliary database from the RMAN prompt:

    % rman
    

    RMAN> connect auxiliary sys/aux_pwd@aux_str

    To connect to the target, auxiliary, and recovery catalog databases, issue the following:

    % rman
    RMAN> connect target sys/target_pwd@target_str
    RMAN> connect catalog rman/cat_pwd@cat_str
    RMAN> connect auxiliary sys/aux_pwd@aux_str
    

    See Also:

    Chapter 8, "Performing Point-in-Time Recovery with Recovery Manager" to learn how to perform RMAN TSPITR, and "duplicate" for duplicate command syntax. 

    Hiding Passwords When Connecting to RMAN

    If you want to connect to RMAN from the operating system command line and hide authentication information, you can write a connect script and then create execute-only privileges on the file.

    For example, if you are running RMAN in an UNIX environment, you can place the following connection information in a text file called connect_rman.sh:

    rman target sys/target_pwd@target_str catalog rman/cat_pwd@cat_str

    Then, change the permissions on the connect script so that everyone can execute the script but only the desired users have read access:

    % chmod 711 connect_rman.sh 
    
    

    To connect to RMAN, users can execute the script from the operating system command line:

    % connect_rman.sh
    

    Disconnecting from RMAN

    To disconnect from RMAN, type exit at the RMAN prompt:

    RMAN> exit
    

    Using Basic RMAN Commands

    Once you have learned how to connect to RMAN, you can immediately begin performing backup, recovery, and maintenance operations. Use the examples in this section to sample a few basic commands.

    These examples assume the following:

    You will learn how to perform the following tasks:

    Connecting to RMAN

    Your first task is to connect to the target database. If you have created a recovery catalog, then you can connect to it as well--although these examples assume you are connecting without a recovery catalog.

    At the command line, enter the following:

    % rman target / nocatalog
    
    

    If your database is already mounted or open, you will see output similar to the following:

    Recovery Manager: Release 8.1.6.0.0 
    
    RMAN-06005: connected to target database: RMAN (DBID=1237603294)
    RMAN-06009: using target database controlfile instead of recovery catalog
    
    

    The DBID displayed is the database identifier for your database.

    If your database is not started, RMAN displays the following message when it connects:

    RMAN-06193: connected to target database (not started)
    

    See Also:

    "cmdLine" for command line connection options. 

    Mounting the Database

    Because you are not using a recovery catalog, RMAN must obtain the information it needs from the target database control file. Consequently, the database must be mounted or open. For these examples, we will mount the database but not open it.

    If the database is not started, issue the startup command, specifying a parameter file if the file is in a non-default location. This example uses the parameter file initPROD1.ora:

    RMAN> startup mount pfile=/oracle/dbs/temp/initPROD1.ora
    
    RMAN-06196: Oracle instance started
    RMAN-06199: database mounted
    
    Total System Global Area      19799144 bytes
    
    Fixed Size                       64616 bytes
    Variable Size                 11001856 bytes
    Database Buffers               8192000 bytes
    Redo Buffers                    540672 bytes
    
    RMAN>
    
    

    RMAN displays the size of the SGA, including the size of the database and redo buffers, and returns you to the RMAN prompt.

    If the database is open, issue the following to close it cleanly and then mount it:

    RMAN> shutdown immediate
    
    RMAN-06405: database closed
    RMAN-06404: database dismounted
    RMAN-06402: Oracle instance shut down
    
    RMAN> startup mount pfile = initPROD1.ora  # specify a parameter file if necessary
    

    See Also:

    "startup" for startup syntax. 

    Reporting the Current Schema

    In this example, ask RMAN to report which datafiles your target database contains. Use the report schema command as follows:

    RMAN> report schema;
    
    

    RMAN displays the datafiles currently in your database. Depending on the contents of your database, you see output similar to the following:

    RMAN-03022: compiling command: report
    Report of database schema
    File K-bytes    Tablespace           RB segs Name
    ---- ---------- -------------------- ------- -------------------
    1         47104 SYSTEM               ***     /oracle/dbs/tbs_01.f
    2           978 SYSTEM               ***     /oracle/dbs/tbs_02.f
    3           978 TBS_1                ***     /oracle/dbs/tbs_11.f
    4           978 TBS_1                ***     /oracle/dbs/tbs_12.f
    5           978 TBS_2                ***     /oracle/dbs/tbs_21.f
    6           978 TBS_2                ***     /oracle/dbs/tbs_22.f
    7           500 TBS_1                ***     /oracle/dbs/tbs_13.f
    8           500 TBS_2                ***     /oracle/dbs/tbs_23.f
    9           500 TBS_2                ***     /oracle/dbs/tbs_24.f
    10         5120 SYSTEM               ***     /oracle/dbs/tbs_03.f
    11         2048 TBS_1                ***     /oracle/dbs/tbs_14.f
    12         2048 TBS_2                ***     /oracle/dbs/tbs_25.f
    

    See Also:

    Chapter 4, "Generating Lists and Reports with Recovery Manager" to learn how to make lists and reports, and "report" for report syntax. 

    Copying a Datafile

    In this example, copy datafile 1 to a new location. Of course, if you do not want to copy this particular datafile, copy any datafile you choose. This example allocates the disk channel c1 and creates a datafile copy named df1.bak.

    Use the copy command as follows:

    RMAN> run {
    2> allocate channel c1 type disk;
    3> copy datafile 1 to 'df1.bak';
    4> }
    
    

    You see output similar to the following:

    RMAN-03022: compiling command: allocate
    RMAN-03023: executing command: allocate
    RMAN-08030: allocated channel: c1
    RMAN-08500: channel c1: sid=12 devtype=DISK
    
    RMAN-03022: compiling command: copy
    RMAN-03023: executing command: copy
    RMAN-08000: channel c1: copied datafile 1
    RMAN-08501: output filename=/oracle/dbs/df1.bak recid=3 stamp=352381826
    RMAN-08031: released channel: c1
    
    

    The RMAN-08000 message informs you that the copy was successful. Note that RMAN displays the full filename of the output copy in message RMAN-08501.

    See Also:

     

    Backing Up a Tablespace

    In this example, back up your SYSTEM tablespace to disk. Of course, you can choose to back up a different object.

    This example backs up the tablespace to its default backup location, which is port-specific: on UNIX systems the location is $ORACLE_HOME/dbs. Because you do not specify the format parameter, RMAN automatically assigns the backup a unique filename.

    Use the backup command as follows:

    RMAN> run {
    2> allocate channel c1 type disk;
    3> backup tablespace system;
    4> }
    
    

    You see output similar to the following:

    RMAN-03022: compiling command: allocate
    RMAN-03023: executing command: allocate
    RMAN-08030: allocated channel: c1
    RMAN-08500: channel c1: sid=12 devtype=DISK
    
    RMAN-03022: compiling command: backup
    RMAN-03023: executing command: backup
    RMAN-08008: channel c1: starting full datafile backupset
    RMAN-08502: set_count=1 set_stamp=352382211 creation_time=18-DEC-98
    RMAN-08010: channel c1: specifying datafile(s) in backupset
    RMAN-08522: input datafile fno=00001 name=/vobs/oracle/dbs/tbs_01.f
    RMAN-08011: including current controlfile in backupset
    RMAN-08522: input datafile fno=00016 name=/oracle/dbs/tbs_03.f
    RMAN-08522: input datafile fno=00002 name=/oracle/dbs/tbs_02.f
    RMAN-08013: channel c1: piece 1 created
    RMAN-08503: piece handle=/oracle/dbs/1hag1r83_1_1 comment=NONE
    RMAN-08525: backup set complete, elapsed time: 00:00:27
    RMAN-08031: released channel: c1
    
    

    The RMAN-08525 message informs you that RMAN created the backup set successfully. Note that RMAN displays the full filename for the backup piece in message RMAN-08503.

    See Also:

    "Making Backups" to learn how to make image copies, and "backup" for backup syntax. 

    Listing Backups and Copies

    In this example, list your backup sets and image copies. Issue the list command as follows:

    RMAN> list backup;
    
    

    You see output similar to the following:

    List of Backup Sets
    Key     Recid      Stamp      LV Set Stamp  Set Count  Completion Time
    ------- ---------- ---------- -- ---------- ---------- ----------------------
    3       3          352382231  0  352382211  49         18-DEC-98
    
        List of Backup Pieces
        Key     Pc# Cp# Status      Completion Time        Piece Name
        ------- --- --- ----------- ---------------------- ------------------------
        2       1   1   AVAILABLE   18-DEC-98              /oracle/dbs/1hag1r83_1_1
    
        List of Datafiles Included
        File Name                                  LV Type Ckp SCN    Ckp Time
        ---- ------------------------------------- -- ---- ---------- -------------
        1    /oracle/dbs/tbs_01.f             0  Full 114149     18-DEC-98
        2    /oracle/dbs/tbs_02.f             0  Full 114149     18-DEC-98
        16   /oracle/dbs/tbs_03.f             0  Full 114149     18-DEC-98
    
    

    RMAN tells you which backup sets and pieces it created as well as which datafiles it included in those sets.

    Now list your image copies as follows:

    RMAN> list copy;
    
    

    You see output similar to the following:

    List of Datafile Copies
    Key     File S Completion time Ckp SCN    Ckp time        Name
    ------- ---- - --------------- ---------- --------------- ------
    2       1    A 18-DEC-98       114148     18-DEC-98       /oracle/dbs/df1.bak
    

    See Also:

    "list" for an explanation of the column headings in the list output, and "Generating Lists" to learn how to make lists and reports. 

    Validating a Restore

    Finally, check that you are able to restore your backup in case of a media failure. Use the output from the list backup command to determine the primary key for the backup set:

    List of Backup Sets
    Key     Recid      Stamp      LV Set Stamp  Set Count  Completion Time
    ------- ---------- ---------- -- ---------- ---------- ----------------------
    3       3          352382231  0  352382211  49         18-DEC-98
    
    

    In this example, the primary key is 3. Use the primary key value in your backup set in the validate backupset command as follows:

    RMAN> run {
    2> allocate channel c1 type disk;
    3> validate backupset 3;
    4> }
    
    

    You should see output similar to the following:

    RMAN-03022: compiling command: allocate
    RMAN-03023: executing command: allocate
    RMAN-08030: allocated channel: c1
    RMAN-08500: channel c1: sid=12 devtype=DISK
    
    RMAN-03022: compiling command: validate
    RMAN-03023: executing command: validate
    RMAN-08096: channel c1: starting validation of datafile backupset
    RMAN-08502: set_count=49 set_stamp=352382211 creation_time=18-DEC-98
    RMAN-08023: channel c1: restored backup piece 1
    RMAN-08511: piece handle=/oracle/dbs/1hag1r83_1_1 params=NULL
    RMAN-08098: channel c1: validation complete
    RMAN-08031: released channel: c1
    
    

    If there are no error messages, then RMAN confirms that it is able to restore the backup set. When there is an error, RMAN always displays an error banner and provides messages indicating the nature of the error.

    For example, if you try to allocate a channel on the target database when not connected to it you see:

    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure during compilation of command
    RMAN-03013: command type: allocate
    RMAN-06171: not connected to target database
    

    See Also:

    "Restoring Datafiles, Control Files, and Archived Redo Logs" to learn how to restore backups and copies, and "validate" for validate syntax. 

    Configuring a Media Manager

    To back up to and restore from sequential media such as tape you must integrate a media manager with Oracle. This section includes the following topics:

    Linking with a Media Manager

    To integrate Oracle with a media manager, you must:

    Generating Unique Filenames

    Use the substitution variables provided by RMAN to generate unique backup piece names when writing backups to a media manager (see "backup" for the complete list of variables). A backup piece name is determined by the format string specified either in the backup command or in the allocate channel command.

    If you do not specify the format parameter, RMAN automatically generates a unique filename using the %U substitution variable. The media manager considers the backup piece name as the filename backed up, so this name must be unique in the media manager catalog.


    Note:

    Some media managers only support a 14-character backup piece name. See your media management documentation to determine the limit for your media manager. 


    Limiting File Size

    Some media managers have limits on the maximum size of files that they can back up or restore. File size is an issue in those situations in which RMAN multiplexes multiple datafiles into one output file, but the backup piece size is in excess of the size that the media manager or file system is able to store.

    To avoid problems, see your media management documentation for operational limits on file sizes. Ensure that the files written out by RMAN do not exceed these limits. To limit backup piece file sizes, use the parameter kbytes in a set limit channel command. See the scripts in your $ORACLE_HOME/rdbms/demo directory for an example.

    See Also:

    "set_run_option" to learn about various parameters affecting the run command. 

    Sending Device-Specific Strings to the Media Manager

    Use the send command to send a vendor-specific quoted string to the media management software. See your media management documentation to determine which commands it supports.You can use:

    Troubleshooting the Media Manager

    To aid in troubleshooting media management, Oracle offers a client program, sbttest. This program, which is linked to RMAN to perform backups to tape, provides a stand-alone test of the media management software. Use it when Oracle is unable to create or restore backups using either the bundled Legato Storage Manager or another vendor's media management product. Only use the sbttest program at the direction of Oracle support.

    See Also:

    Chapter 9, "Recovery Manager Troubleshooting" for more information about troubleshooting RMAN. 

    Using Sample Scripts and Scenarios

    The $ORACLE_HOME/rdbms/demo sub-directory (the location may differ depending on your operating system) contains a number of sample RMAN scripts. These files are executable Recovery Manager command files that are fully documented so that you can understand the features used. Edit them to customize them for your site.

    The first file provides a number of scripts that back up, restore, and recover a database. These scripts are typical of how some administrators back up their databases; use them as a starting point for developing backup, restore, and recovery scripts. The remaining files contain either a backup, recovery, or duplication scenario.

    Run command files from either the operating system command line or the RMAN prompt. If you use a recovery catalog, you can also create scripts using the create script command and execute them within a run command.

    See Also:

     


  • Go to previous page Go to next page
    Oracle
    Copyright © 1996-2000, Oracle Corporation.

    All Rights Reserved.

    Library

    Product

    Contents

    Index