Page 1 of 1

integrate sbt_library with RMAN (Linux RedHat)

Posted: Mon Oct 11, 2010 3:19 pm
by mramadhani
Dear all

Can any one help me? i have installed oracle e-business suite 11i with database version 9i on the RedHat ES 4 ....i want to perform backup by using Tape.....i mean just insert TAPE DRIVE in the machine and to run RMAN command to perfom some files backup....

Posted: Tue Oct 12, 2010 12:39 am
by amirtai
Hello

You just need to simply allocate a channel for TAPE which you can name SBT TAPE and rest of the commands are same. Just to get an idea you can refer to metalink Note.66333.1. Here is an example given below:

RMAN> run {
allocate channel c1 type 'sbt_tape';
release channel c1;}

Amir

Posted: Fri Oct 15, 2010 11:53 am
by mramadhani
Yes Amir...

Thanks i have understood that but the issue is that when i execute command i got an error like this,

this a error that i got.......

NetWorker: Cannot contact nsrexecd service on ebstest.tea.or.tz, Service not available.
allocated channel: ch1
channel ch1: sid=87 devtype=SBT_TAPE
channel ch1: NMO v3.5.0.1

Starting backup at 12-OCT-10
channel ch1: starting full datafile backupset
input datafile fno=00354 name=/home/oracle/teadata/system11.dbf
input datafile fno=00351 name=/home/oracle/teadata/system07.dbf
input datafile fno=00352 name=/home/oracle/teadata/system09.dbf
input datafile fno=00353 name=/home/oracle/teadata/system08.dbf
input datafile fno=00011 name=/home/oracle/teadata/RMAN01.DBF
channel ch1: starting piece 1 at 12-OCT-10
released channel: ch1
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on ch1 channel at 10/12/2010 13:33:55
ORA-19506: failed to create sequential file, name="0hlq91e2_1_1", parms=""
ORA-27028: skgfqcre: sbtbackup returned error
ORA-19511: Error received from media manager layer, error text:
nwora_index_ssinfo: index connect to ebstest.tea.or.tz failed for client
ebstest.tea.or.tz: Program not registered

RMAN>

so it seemde that there is a problem in the Media management software which ia networker.......i dont know how to resolve this issues....

Thanks Amir i have appreciate your help

mramadhani

Posted: Sat Oct 23, 2010 3:39 am
by amirtai
Hello

Where are you running it from the backup client or server. That's not MAN error, At the begining, it's complaining that service does not exist.

NetWorker: Cannot contact nsrexecd service on ebstest.tea.or.tz, Service not available.
allocated channel: ch1

Is nsrexecd two services running there?

You need to test the connection before you'll run RMAN.

# nsradmin -s ebstest.tea.or.tz -p 390113

If you can login and see a prompt, please type PRINT command.

Amir