Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Posting: Doc for Legato configuration on HP
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
------=_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
![]() |
![]() |