Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Omniback / Rman
danthefirst2000_at_yahoo.com wrote:
> During a 9i rman restore I started a 8i rman backup using HP
Omniback
> Data Protector (v A.05.10). Any idea why the 8i backup job gets
append
> to the 9i restore session (Omniback session) rather than starting a
new
> session. Os HPUX 11.0. Has anyone seen this before?
Dan I would recommend not using data protector to do the restore but instead control it directly from rman. You just need to setup the correct parameters in rman to access the tape system ( via data protector of course ).
#!/bin/ksh
. /u01/local/bin/.9isetenv
rman <<EOF
connect catalog ****/*****@rcatid
connect target ****/******@targetid
run { allocate channel t1 device type 'sbt_tape'
parms'ENV=(OB2BARTYPE=Oracle8,O
B2APPNAME=whatyouconfigured'; /* whatever rman commands you need */;
release channel t1; }
EOF
While you have to configure various things in omniback ( the barlist
stuff etc ) I am not a big fan of doing backups or restores thru Data
Protector. I prefer to drive everything thru rman itself.
Just my opinion.
John Received on Thu Jan 27 2005 - 07:37:52 CST