Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: RMAN

Re: RMAN

From: Kenneth Berland <ken_at_hero.com>
Date: Wed, 6 Sep 2000 11:57:19 -0700 (PDT)
Message-Id: <10611.116328@fatcity.com>


Read the docs and install the necessary packages. Then connect to it, "rman target user/pass_at_host nocatalog" without a recovery catalog. Backup the whole database:

run {

     allocate channel ch1 type disk;
     backup database; 
     sql 'ALTER SYSTEM ARCHIVE LOG CURRENT';
     sql 'ALTER SYSTEM ARCHIVE LOG ALL';
}

The DBMS_BACKUP_RESTORE package is created by the dbmsbkrs.sql and prvtbkrs.plb scripts. This package is automatically installed in every Oracle database when the catproc.sql script is run. This package interfaces with the Oracle server and the operating system to provide the I/O services for backup and restore operations as directed by Recovery Manager.

> is there someone who

can shed some light
on how to configure RMAN?...I'm running 8.0.5.2.1 on Sun Solaris 2.6...
>
> --
> Author: Roy Ferguson
> INET: rferguso_at_level1.com
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> 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 Wed Sep 06 2000 - 13:57:19 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US