How to backup an export dump file that is located on the Asm using Veritas netbackup for oracle
Hi experts:
How to backup an export dump file that is located on the Asm using Veritas netbackup for oracle ?
I don't think that using Rman will do it because Rman only backup what it is part of the datbase like control files, archive logs, redo logs and datafiles.
This is a regular script that I use with Netbackup with oracle using Rman:
==================================================================================
OUTF=/home/oracle/dba/logs/SCSD2.HOTBK.`date '+%Y-%m-%d'`.log
echo $OUTF>/tmp/TODAYLOG
OUTF=`cat /tmp/TODAYLOG`
rman target / catalog <user>/<password>@<db_catalog_name><<EOF
spool log to $OUTF append
run {
How to backup an export dump file that is located on the Asm using Veritas netbackup for oracle ?
I don't think that using Rman will do it because Rman only backup what it is part of the datbase like control files, archive logs, redo logs and datafiles.
This is a regular script that I use with Netbackup with oracle using Rman:
==================================================================================
OUTF=/home/oracle/dba/logs/SCSD2.HOTBK.`date '+%Y-%m-%d'`.log
echo $OUTF>/tmp/TODAYLOG
OUTF=`cat /tmp/TODAYLOG`
rman target / catalog <user>/<password>@<db_catalog_name><<EOF
spool log to $OUTF append
run {
0