TDP for Oracle with RMAN Backup problem

sanku

ADSM.ORG Member
Joined
Feb 1, 2005
Messages
8
Reaction score
0
Points
0
Website
Visit site
Dear Tachies,



I am facing the following error with RMAN backup with TDP for oracle in one of the My cluster Node.

My Env:

TDP for oracle with 5.2.1

TSM 5.3 with LANFREE

Client AIX with Oracle 9iR2

I am able to take the lanfree backup from cluster nodes.

But I am getting the following error for with rman in one of the server.

Error Details:

RMAN> 2> 3> 4> 5> 6> 7> 8> 9> 10>

RMAN-00571: ===========================================================

RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============

RMAN-00571: ===========================================================

RMAN-03009: failure of allocate command on t2 channel at 07/05/2005 12:56:36

ORA-19554: error allocating device, device type: SBT_TAPE, device name:

ORA-27000: skgfqsbi: failed to initialize storage subsystem (SBT) layer

IBM AIX RISC System/6000 Error: 106: Reserved errno was encountered

Additional information: 7011

ORA-19511: Error received from media manager layer, error text:

SBT error = 7011, errno = 106, sbtopen: system error



Please suggest me any help for this prob.



Rgds

Sanku
 
Anything with the SBT layer is usually indicative of an issue with the Oracle relinking.

Have you relinked Oracle after the TDP library install?
 
Yep, that is the answer. Relink your Oracle libraries. Also ensure your tdpo.conf file states you want to use Lanfree option. When in doubt, view your environment with the "showenv" variable. Oh For the likes of me, since is midnight on a Tues, I cannot think of the command.



Steve
 
Dear Friends,



I have relinked the Oracle libraries through "relink all " command, After the relinkg still i am facing same prblem.

My all configuration file are correct(dsm.opt,dsm.sys &tdpo.opt).



Kindly provide some suggetions on this. Advanced apprications to them.



Rgds

Sanku
 
Thanks for your support.



My rman script:

rman log=/backup/logs/level0_backup.log target / <<EOF

configure retention policy to recovery window of 7 days;

configure backup optimization on;

configure controlfile autobackup on;

configure maxsetsize to unlimited;

run{

allocate channel t1 type 'sbt_tape' parms

'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';

backup incremental level 0

filesperset 10

format 'test1_df_%t_%s_%p_%u'

tag 'test1_dbf_level_0_weekly'

(database include current controlfile);

release channel t1;

}



CROSSCHECK BACKUP;

LIST BACKUP OF DATABASE;

REPORT UNRECOVERABLE;

REPORT SCHEMA;

REPORT NEED BACKUP;

REPORT OBSOLETE;

quit

EOF



Rgds

Sanku
 
Here is a discrepancy

allocate channel t1 type 'sbt_tape' parms

Versus the following error

RMAN-03009: failure of allocate command on t2 channel at 07/05/2005 12:56:36



You have "channel differences"



Also where is your TDP dsm.opt file, it should be in Oracle's working directory.



Steven
 
I have problem that looks very similar.

AIX 5.3L 64 bit , Oracle 9i 9.20, TSM 5.3 with tdpo



/u01/app/oracle/920/lib/libobk.a is linked to /usr/lib/libobk64.a, which is in turn linked to the libobk64.a in the TDPO installation.

tsm/client/oracle/bin64/dsm.opt contains servername as per dsm.sys.

tsm/client/oracle/bin64/tdpo.opt contains dsm.opt location, log location and nodename.

tsm/client/api/bin64/dsm.sys is linked to tsm/client/baclient/bin/dsm.sys, which contains a server stanza for the TDPO.



Password is set and the node is registered.

I have done a relink all.



Receiving this when attempting a very simple RMAN backup script:



RMAN> run {

2> allocate channel t1 type 'sbt_tape' parms

'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';

3> backup filesperset 5 format 'dt_%t_%s_%p' (database);

4> }



RMAN-00571: RMAN-03009: failure of allocate command on t1 channel at 08/02/2005 19:12:58

ORA-19554: error allocating device, device type: SBT_TAPE, device name:

ORA-27000: skgfqsbi: failed to initialize storage subsystem (SBT) layer

IBM AIX RISC System/6000 Error: 106: Reserved errno was encountered

Additional information: 7011

ORA-19511: Error received from media manager layer, error text:

SBT error = 7011, errno = 106, sbtopen: system error



Any ideas?



Rhys.
 
hey rhysm,

give chmod 777 to libobk64.a on /usr/tivoli/tsm/client/oracle/bin64 directory and try again...
 
Back
Top