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: Posting: Doc for Legato configuration on HP

RE: Posting: Doc for Legato configuration on HP

From: Anil Sikri <anil_sikri_at_hotmail.com>
Date: Thu, 04 May 2000 16:42:30 CDT
Message-Id: <10487.104989@fatcity.com>


This is a multi-part message in MIME format.

------=_NextPart_000_33b25922_65fa48d3$2551127e Content-Type: text/plain; format=flowed

Hi Anne,

        Sorry for the problem.
        I am sending the attachments again.

Let me know if you need any help.

Anil Sikri



Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

------=_NextPart_000_33b25922_65fa48d3$2551127e

Content-Type: text/plain; name="Legato Setup and Configuration.txt"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment; filename="Legato Setup and Configuration.txt"

<binary content removed -- do not send binaries to the list>

------=_NextPart_000_33b25922_65fa48d3$2551127e

Content-Type: text/plain; name="rman_full_backup_script.rcv.txt"; format=flowed
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment; filename="rman_full_backup_script.rcv.txt"


create script hot_db_backup_to_tape
{

   allocate channel t1 type 'SBT_TAPE' parms 'ENV=(BACKUP_DIR=/dev/rmt/0m)';    backup database
   format 'full_%d_%u';
   release channel t1;
}

create script backup_archlog_all
{

   allocate channel t1 type 'SBT_TAPE' parms 'ENV=(BACKUP_DIR=/dev/rmt/0m)';    sql "alter system archive log current";    backup archivelog all format 'arch_%u';    release channel t1;
}

create script backup_archlog_old
{

   allocate channel t1 type 'SBT_TAPE' parms 'ENV=(BACKUP_DIR=/dev/rmt/0m)';    backup archivelog
   until time 'sysdate -2'
   all format 'arch_old_%u'
   delete input;
   release channel t1;
} Received on Thu May 04 2000 - 16:42:30 CDT

Original text of this message

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