Hi,
I am trying to take cold backup of my 10.2.0.3 database on RHEL 4 server using RMAN and netbackup.
my steps are
SQL> conn /as sysdba;
SQL> shutdown immediate;
SQL> startup mount pfile=../../../../initmySID.ora;
exit;
$ORACLE_HOME/bin/rman target / nocatalog
RMAN>
run
{
allocate channel ch00 device type 'SBT_TAPE';
send 'NB_ORA_POLICY=Oracle-linux-myserver-mySID,NB_ORA_SCHED=Default-Application-Backup';
Backup format 'mySID_u%u_s%s_p%p_t%t' tag 'mySID_cold' database;
release channel ch00;
}
I am getting the following error.
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of allocate command on ch00 channel at 10/01/2010 10:28:57
ORA-19554: error allocating device, device type: SBT_TAPE, device name:
ORA-27211: Failed to load Media Management Library
Additional information: 2
our sysadmin has installed the netbackup. So i don't know what I am doing wrong?
Thanks,