This post is more than 5 years old
1 Rookie
•
88 Posts
0
12741
June 12th, 2007 13:00
Oracle RMAN Problems
I am using networker 7.2 with NMO 4.2 and I am running into the following issues when at this point: this is oracle 10g
allocate channel channel1 type 'SBT_TAPE'
I get the following:
RMAN-03009: failure of allocate command on oem_sbt_backup channel at 06/05/2007 14:40:46
ORA-19554: error allocating device, device type: SBT_TAPE, device name:
ORA-27000: skgfqsbi: failed to initialize storage subsystem (SBT) layer
I think I have the problem with RMAN trying to talk to the tape devices. I have verified with inquire that the hosts recognizes the tape devices can communicate with them. I have tried CONFIGURE DEVICE TYPE SBT CLEAR; Any help would be appreciated.
allocate channel channel1 type 'SBT_TAPE'
I get the following:
RMAN-03009: failure of allocate command on oem_sbt_backup channel at 06/05/2007 14:40:46
ORA-19554: error allocating device, device type: SBT_TAPE, device name:
ORA-27000: skgfqsbi: failed to initialize storage subsystem (SBT) layer
I think I have the problem with RMAN trying to talk to the tape devices. I have verified with inquire that the hosts recognizes the tape devices can communicate with them. I have tried CONFIGURE DEVICE TYPE SBT CLEAR; Any help would be appreciated.


ble1
4 Operator
•
14.4K Posts
0
June 13th, 2007 06:00
ble1
4 Operator
•
14.4K Posts
0
June 12th, 2007 14:00
ajw2
1 Rookie
•
88 Posts
0
June 12th, 2007 14:00
luxz
Posts: 4
Registered: 1/17/07
Re: NMO 4.2 windows x86 on Windows Server 2003 R2 EMT64
Posted: May 10, 2007 3:12 AM in response to: Hrvoje Crvelin Reply
Microsoft Windows [Version 5.2.3790]
(C) Copyright 1985-2003 Microsoft Corp.
C:\Documents and Settings\oracle>rman nocatalog
Recovery Manager: Release 10.2.0.3.0 - Production on Thu May 10 08:47:25
2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
RMAN> connect target /
connected to target database: THINFO (DBID=2072533893)
using target database control file instead of recovery catalog
RMAN> run {
2> allocate channel t1 type 'SBT_TAPE' parms
'ENV=(NSR_SERVER=192.168.0.100)';
3> release channel t1;
4> }
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of allocate command on t1 channel at 05/10/2007 08:48:17
ORA-19554: error allocating device, device type: SBT_TAPE, device name:
ORA-27211: Failed to load Media Management Library
RMAN>
Hrvoje Crvelin
Posts: 4,332
From: Orchestra Service Gmbh
Registered: 11/21/05
Re: NMO 4.2 windows x86 on Windows Server 2003 R2 EMT64
Posted: May 10, 2007 3:57 AM in response to: luxz Reply
I know support has guide for this, but I can't check it out exactly what it was. See with support for workaround (as solution for fact is NMO5 which will be out in couple of months).
Do you have the support guide for this ? I am running into the same issue.
ajw2
1 Rookie
•
88 Posts
0
June 12th, 2007 14:00
ble1
4 Operator
•
14.4K Posts
1
June 12th, 2007 23:00
ajw2
1 Rookie
•
88 Posts
0
June 13th, 2007 06:00
ble1
4 Operator
•
14.4K Posts
0
June 13th, 2007 06:00
- have parms line in new line (you may wish to use send approach instead too as Oracle suggests that too)
- for server use hostname and make sure you can resolve (either DNS or hosts) IP of server (192.168.0.100)
- you are missing backup action which goes before releasing channel
You can find few RMAN script examples on this forum in case you are wondering what to do (or on Metalink).
ajw2
1 Rookie
•
88 Posts
0
June 13th, 2007 06:00
connect Target /
run {
allocate channel chanel1 type 'sbt_tape'
parms 'ENV=(NSR_SERVER=servername.com, NSR_GROUP=backupgroup)'
format 'b_%u_%p_%c';
backup full
(database include current control file);
backup
(archive all delete input);
release channel channel1;
}
ble1
4 Operator
•
14.4K Posts
1
June 13th, 2007 06:00
ajw2
1 Rookie
•
88 Posts
0
June 13th, 2007 06:00
ble1
4 Operator
•
14.4K Posts
0
June 13th, 2007 07:00
Using parms:
Using send
I never used / for connect string as I remember having issues with that in the past even I do not think that could be your issue here. Nevertheless, you may wish to check it out too.
ajw2
1 Rookie
•
88 Posts
0
June 13th, 2007 07:00