Backup using MML - how to change format?
rysalkaMar 12 2009 — edited Mar 13 2009We are on Oracle 10.2.0.3, using RMAN catalog with NMO (Networker Module for Oracle from EMC). I have a following backup script:
connect target sys/****@PROD;*
connect catalog rman/***@catalog;*
*run {*
allocate channel t1 type 'SBT_TAPE';
allocate channel t2 type 'SBT_TAPE';
send 'NSR_ENV=(NSR_SERVER="********",NSR_DATA_VOLUME_POOL=******)';*
*backup database plus archivelog;*
*release channel t1;*
*release channel t2;*
*}*
When I do a manual backup - i.e. I execute this script from the command like by the means of:
*rman cmdfile 'scriptname.txt'*
I can see the backup pieces in Networker with the names like '2_009_pc', etc. But when I run the same script from Networker server, I do not get the names of the backup pieces. All I get is the name of this script - i.e. 'scriptname'. So then if I need to restore from backup that say, expired from catalog and controlfile (and, say catalog and controlfile are unavailable), I cannot get the names of the backup pieces. Is there a special formatting command that I can sent do networker server so that I can see the names of the pieces there?