Drop view command hangs

I would like to recreate a view.
But the session hangs.
I can't drop this view too.
It is a simple view like this:
create or replace forse view
(t.col1,t.col2,tt.col3,t.col4) as
select col1,col2,col3,col4
from tab1t,tab3 tt
on t.col1 = tt.col1
There is no lock on this object. I looked in v$lock and v$locked objects

Hi,
create or replace forse view
+(col1,col2,col3,col4,col5) as+
select t.col1,t.col2,tt.col3,t.col4
from tab1t,tab3 tt
on t.col1 = tt.col1
First time I am seeing the Code like this..
Creating a View with out a Name.. ?? Is it possible...
How come the 5 Cols with 4 Cols..does it possbile or are u testing ..
15:52:29 topgun>create table t1(col1 number, col2 number, col3 number, col4 numb
er);
Table created.
15:52:53 topgun>insert into t1 values (10,10,20,20);
1 row created.
15:53:06 topgun>create or replace view view_t1 (col1,col2,col3,col4,col5) as sel
ect col1,col2,col3,col4 from t1;
create or replace view view_t1 (col1,col2,col3,col4,col5) as select col1,col2,co
l3,col4 from t1
ERROR at line 1:
ORA-01730: invalid number of column names specified
15:53:46 topgun>create or replace view view_t1 (col1,col2,col3,col4,col5) as sel
ect col1,col2,col3,col4,'col5' from t1;
View created.
15:54:15 topgun>desc t1
Name                                      Null?    Type
COL1                                               NUMBER
COL2                                               NUMBER
COL3                                               NUMBER
COL4                                               NUMBER
15:54:19 topgun>- Pavan Kumar N

Similar Messages

  • Drop user command hangs on 10.2.0.1

    Hi,
    db version: 10.2.0.1 64 bit
    os : sun 5.9
    I created a sample user
    $. sqlplus / as sysdba
    sql> create user 'test' identified by test default tablespace tools;
    granted connect and resource to the user
    sql> created sample table and inserted few values in the table.
    now when i try to drop the user the session hangs for ever.
    sql> drop user test cascade;
    is this a bug? or am I missing something?
    Thanks

    Get SYSTEMSTATE and HANGANALYZE Dumps
    This creates a large trace file in the user_dump_dest (30M or more is not unusual).
    Note: the init<sid>.ora parameter MAX_DUMP_FILE_SIZE controls the maximum trace file size. Using Oradebug and setting unlimit will allow a complete dump which we will need.
    Do this step for sure if the entire database is frozen or nearly frozen and if this condition came on suddenly and there are no archive errors in the alert log. Please note: As systemstate dumps are instance specific, they tend to be inconclusive with hanging problems involving Oracle Parallel Server (OPS) unless you get them from each node. You will need 3 system state dumps from each node for OPS.
    NOTE: Do systemstate dump 3 times in a row, so we can determine whether
    the processes are hung or active.
    For Oracle 9.2.0.1 or higher
    $ sqlplus /nolog
    connect / as sysdba
    oradebug setmypid
    oradebug unlimit
    oradebug hanganalyze 3
    wait 90 seconds
    oradebug hanganalyze 3
    oradebug dump systemstate 10
    wait 90 seconds
    oradebug dump systemstate 10
    wait 90 seconds
    oradebug dump systemstate 10
    metalink doc Subject:      Diagnosing Database Hanging Issues
         Doc ID:      Note:61552.1

  • How to restore views and procedures after drop user command?

    How to restore views and procedures after drop user command?
    We have 817 EE on NT and one developer created a lot of procedures, functions and vews. DB was not backuped and archived and export has not been done - our fault and we understand it. Sorry for this.
    Ok, now the story: another developer dropped this db user and we lost everything: procedures, functions and vews. The new user with trhe same name was created and new schema was imported in this user, but all old objects are lost. We don't have export and backup and archive log files.
    Question: may we can restore this lost stuff from some other sources. We are looking for lost codes, not data. May be we can use redo logs or shared pool or any other things. Any idea will be appreciated.
    Thanks.
    Victor
    [email protected]

    The switch has occurred after user was dropped, the data has been overwritten and there is be no way to use redo log files.
    I would like to explore another opportunity. Is possible to use Shared Pool or any Data Dictionary internal information to restore texts of the lost SQL and PL/SQL scripts executed in this DB before user was dropped? Not too many scripts are executed in this DB and the lost ones may still be in stack. I remember that Shared Pool (cash) should keep last executed scripts in order to improve performance. They probably are kept in some special format. Can we restore these scripts? Of course they also might be pushed out by Import that had been done after user was dropped.
    Thanks for your help,
    Victor

  • Drop Temp tablespace hangs...

    I have created a new TEMP tablespace and made it default TEMP one.
    Now I want to drop TEMP3 tablespace, because it has become fulll...
    when I drop it through EM, it hangs...
    Once a tablespace has been dropped, the objects and data in it will no longer be available. To recover them can be a time consuming process. Oracle recommends a backup before and after dropping a tablespace.
    Are you sure you want to delete Tablespace TEMP3?
    Delete associated datafiles from the OS
    When I checked at EM, there are locks too..
    SMON has locked the system
    What should I do now?

    The_Rock wrote:
    I have created a new TEMP tablespace and made it default TEMP one.
    Now I want to drop TEMP3 tablespace, because it has become fulll...
    when I drop it through EM, it hangs...
    Once a tablespace has been dropped, the objects and data in it will no longer be available. To recover them can be a time consuming process. Oracle recommends a backup before and after dropping a tablespace.
    Are you sure you want to delete Tablespace TEMP3?
    Delete associated datafiles from the OS
    When I checked at EM, there are locks too..
    SMON has locked the system
    What should I do now?Refer
    Drop Temp Tablespace Command Hangs [ID 214371.1]
    How to Drop Temporary Tablespace Having Enteries in V$SORT_USAGE [ID 285993.1]

  • Unable to drop view

    Hi
    I'm unable to drop a view owned by me. The system hangs when I issue 'DROP VIEW &lt;view name&gt;.
    In DBA_OBJECTS the STATUS shows 'VALID'.
    Can you help to how to drop this problem.
    Thanks & Regards
    Bhaskara

    here are few options :
    o write a query on v$lock, v$session and v$process
    or
    o select field_lists from v$sql where sql_text like '%VIEW_NAME%' and parsing_schema_id = user_id from dba_users
    this will give you some idea about the process
    or
    o take a systemstate dump
    if you know how to read systemstate dump trace file, this is prefered method.
    try the 1st option and use addr and saddr to join the tables.
    Best,
    G

  • I have Acrobat XI and am trying to add pages to a pdf. Tutorials instruct to use Tools, Options or Page Thumbnail to get to a drop down command of Insert Page, does not appear as my choices.

    I have Acrobat XI and am trying to add pages to a pdf. Tutorials instruct me to use Tools, Options or Page Thumbnail to get to a drop down command of Insert Page, but I have few choices in any of those places and Insert Page is not any of them.

    What do you see, then?
    On Thu, Feb 26, 2015 at 4:14 PM, lindab5415 <[email protected]>

  • Crystal Viewer report hangs

    Hello,
    I am having a problem deploying a Crystal report to run under IIS/aspx using the CrystalReportViewer.
    I rdp to the windows 2008 server, start crystal reports and the report works under Crystal on the server fine.
    Running the same crystal report on the same server using IIS/aspx and the viewer has a problem. I load the aspx page, the viewer shows a prompt with server name, database name, user name and password information. The details are all right, I enter the password and I just get the message 'Please wait while the document is being processed' that just stays there indefinitely. Everything is on the same server except the SQL Server and database. Crystal Reports and ODBC reach SQL Server fine and Crystal shows the report from the server, but the viewer just hangs.
    I have done this on two other customer servers and the above worked fine - the crystal report showed in the viewer. There is something different on this server that I cannot figure out.
    I stripped down the report to a single table and a few fields u2013 no multiple tables, joins, sub-reports, created a very simple report to try and isolate the problem. I also removed all the VB code behind u2013 pretty well just load the report and display.
    I loaded the CRRuntime_32bit_13_0_2 on the server, created an IIS application, copied over the report and aspx/code behind and tested.
    the web config has the Version=13.0.2000.0 assemblies.
    Any help resolving this issue would be appreciated. I have looked at 100s of google posts, most very similar, but none have helped get this report going.
    Thanks Nick

    Hello,
    I took a step back to basics.
    I copied one of the sample projects and made the changes needed to get it working properly.
    crsdk_net_samples_12_0_\Reduced_Code_Tutorials\ReducedCode_DBLogon\CS_Web_ReducedCode_DBLogon\CS_Web_ReducedCode_DBLogon.
    The report appeared properly in the browser now - no hanging after entering login inforamtion.
    I tested with the client 10 and native SQL Server drivers and both worked fine.
    I thought great problem solved, but when went back to version using some code behind same problem. I checked the aspx and made it identical to the one that works. So the aspx, IIS app, Crystal report, everything else is identical. The only difference is the cod behind.
    **** Using this works
    <Report FileName="C:\inetpub\wwwroot\CrystalReports\Transcript_ReportV3.rpt">
    **** replace with codebehind creates hang
            Response.Write("Report Path = " & Server.MapPath("Transcript_ReportV3.rpt") & "</BR>")
            Test1.Load(Server.MapPath("Transcript_ReportV3.rpt"))
            With CrystalReportViewer
                .ReportSource = Test1
            End With
    The full code used is below.
    Getting closer but still not there yet.
    Any other ideas appreciated.
    Thanks Nick
    '************ *This works - report shows in browser*
    <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Test-cl10-dynamic.aspx.cs" Inherits="_Default" %>
    <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
        Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title></title>
        <link href="/aspnet_client/System_Web/2_0_50701/CrystalReportWebFormViewer3/css/default.css"
            rel="stylesheet" type="text/css" />
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
            <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="True"
                Height="1039px" ReportSourceID="CrystalReportSource1" Width="901px" />
            <CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
                <Report FileName="C:\inetpub\wwwroot\CrystalReports\Transcript_ReportV3.rpt">
                </Report>
            </CR:CrystalReportSource>
        </div>
        </form>
    </body>
    </html>
    using System;
    using System.Data;
    using System.Configuration;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;
    public partial class _Default : System.Web.UI.Page
        protected void Page_Load(object sender, EventArgs e)
    '************ *This does not work - report hangs after entring authenticaion information*<%@ Page Language="VB" AutoEventWireup="true" CodeFile="Test1-dynamic.aspx.vb" Inherits="Test1" %>
    <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head id="Head1" runat="server">
        <title></title>
        <link href="/aspnet_client/System_Web/2_0_50701/CrystalReportWebFormViewer3/css/default.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
        <asp:Label id="MyText" runat="server" />
        <CR:CrystalReportViewer ID="CrystalReportViewer" runat="server" AutoDataBind="True" Height="1039px" Width="901px" />
        </div>
        </form>
    </body>
    </html>
    Partial Class Test1
        Inherits System.Web.UI.Page
        Dim Test1 As New CrystalDecisions.CrystalReports.Engine.ReportDocument
        Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
            Response.Write("Report Path = " & Server.MapPath("Transcript_ReportV3.rpt") & "</BR>")
            Test1.Load(Server.MapPath("Transcript_ReportV3.rpt"))
            With CrystalReportViewer
                .ReportSource = Test1
            End With
        End Sub
    End Class
    Edited by: Don Williams on Jan 27, 2012 9:17 AM

  • Drop down commands stopped working.

    My drop down commands suddenly stopped working in the middle of working on a document. I was changing fonts of certain parts of the document by selecting the text and using the right click command. I noticed I could still change it using the tools at the top of the page. Nothing in my right click command works and neither does anything in the drop down tabs at the top like file, edit, layout etc. For example I can't save or print without using the keyboard shortcuts. It allows me to select the action but doesn't do anything. I don't believe I would have accidently hit anything since what I was doing is a pretty simple task. Any suggestions?

    http://helpx.adobe.com/indesign/kb/indesign-tools-panels-dont-respond.html

  • Copy command hangs

    Hello All,
    I'm having problems copying data between
    oracle 8.1.6.1 dbs, both running on Red
    Hat 6.2.
    I'm using syntax like
    copy from username/password@server -
    insert applications -
    using select * from applications
    This works fine when copying between
    oracle 8.1.6.2 dbs running on solaris,
    but on linux the command hangs and
    starts sucking up CPU.
    Thanks in advance,
    Asif.

    thx Kaj for your quick and helpful reply...
    now i just use xcopy with /Q to not display so much information!!
    but what's the good way to read both stdout and stderr at the same time and store them as useful informations!?
    thx again : )

  • TS1702 iOS drop down commands not working

    Drop down commands freezing in ios6 examples print copy twitter etc

    Drop down commands freezing in ios6 examples print copy twitter etc

  • Unloadvol command hangs

    The lsvol command shows that there is a tape mounted in drive1 When I issue unloadvol command to unload the tape, the command hangs.
    2009/11/18.12:59:33 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:34 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:34 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:34 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:34 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:34 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:34 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:34 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:34 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:35 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:35 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:35 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:35 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:35 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:35 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:35 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:35 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:36 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:36 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:36 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:36 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:36 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:36 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:36 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:36 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:37 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:37 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:37 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:37 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:37 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:37 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:37 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:37 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:38 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:38 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:38 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:38 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:38 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:38 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:38 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:38 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:39 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:39 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:39 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:39 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:39 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:39 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:39 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:39 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:40 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:40 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:40 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:40 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:40 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:40 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:40 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:40 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:41 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:41 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:41 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:41 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:41 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:41 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:41 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:41 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:42 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:42 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:42 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:42 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:42 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:42 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:42 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:42 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:43 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:43 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:43 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:43 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:43 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:43 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:43 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:43 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:44 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:44 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:44 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:44 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:44 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:44 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:44 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:44 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:45 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:45 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:45 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:45 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:45 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:45 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:45 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:45 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:46 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:46 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:46 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:46 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:46 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:46 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:46 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:46 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:47 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:47 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:47 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:47 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:47 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:47 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:47 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:47 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:48 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:48 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:48 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:48 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:48 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:48 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:48 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:48 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:49 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:49 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:49 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:49 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:49 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:49 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:49 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:49 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:50 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:50 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:50 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:50 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:50 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:50 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:50 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:50 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:51 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:51 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:51 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:51 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:51 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:51 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:51 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:51 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:52 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:52 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:52 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:52 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:52 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:52 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:52 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:52 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:53 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:53 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:53 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:53 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:53 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:53 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:53 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:53 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:54 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:54 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:54 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:54 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:54 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:54 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:54 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:54 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:55 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:55 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:55 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:55 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:55 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:55 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:55 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:55 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:56 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:56 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:56 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:56 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:56 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:56 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:56 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:56 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:57 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:57 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:57 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:57 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:57 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:57 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:57 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:57 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:58 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:58 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:58 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:58 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:58 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:58 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:58 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:58 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.12:59:59 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.12:59:59 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.12:59:59 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.12:59:59 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.12:59:59 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.12:59:59 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.12:59:59 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.12:59:59 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    2009/11/18.13:00:00 ***1 wst__exec: op=8 (rewind), buf=0x0, count=0 (0x0), parm=0x0
    2009/11/18.13:00:00 ioctl_op=0x3, to=1800, datalen=0x0, buf=0x0, cdb: 01 00 00 00 00 00 rewind
    2009/11/18.13:00:00 ***1 wst__exec: op=2 (sense), buf=0x54e3a8, count=24 (0x18), parm=0x0
    2009/11/18.13:00:00 ioctl_op=0x5, to=30, datalen=0x18, buf=0x54e3a8, cdb: 03 00 00 00 18 00 sense, cnt=24
    2009/11/18.13:00:00 ***1 wst__exec: rval=0, status.code/resid/checks=0x0/0x0/0x0
    2009/11/18.13:00:00 ***1 wst__get_sense(int) cmd = 1, sense data:
    2009/11/18.13:00:00 70 00 02 00 00 00 00 10 00 00 00 00 3A 04 00 00
    00 00 00 00 00 00 00 00
    ec=0, sk=not ready, asc=3A, ascq=4
    error is: device is coming ready (OB scsi device driver)
    flags: (none)
    2009/11/18.13:00:00 ***1 wst__exec: rval=-1, status.code/resid/checks=0x2000811d/0x0/0x0
    [root@prsabkp01m-ebsd lib0]#

    I matched the serial numbers of the tape drive from the control panel. They are correct.
    ob> unloadvol -D tape1
    Error: can't execute command - Interrupted system call
    lib0:
    Device type: library
    Model: [none]
    Serial number: USX615009K
    In service: yes
    Debug mode: no
    Barcode reader: yes
    Barcodes required: yes
    Auto clean: yes
    Clean interval: 1 week
    Clean using emptiest: yes
    Unload required: yes
    Ejection type: auto
    Min writable volumes: 0
    UUID: b28c8fd2-b6bc-102c-816e-0014384cd52a
    Attachment 1:
    Host: prsabkp01m-ebsd
    Raw device: /dev/sg0
    Attachment 2:
    Host: prsatdw01m-ebsd
    Raw device: /dev/sg0
    Attachment 3:
    Host: prsatdw02m-ebsd
    Raw device: /dev/sg0
    Connection type: SCSI
    Inquiry data:
    Vendor: HP
    Product: MSL6000 Series
    Firmware: 0520
    Serial number: USX615009K
    Element counts / addresses:
    1 mte: 0
    58 se : 32 - 89
    2 iee: 448 - 449
    2 dte: 480 - 481
    Moves:
    From mte, to: mte 0 se 0 iee 0 dte 0
    From se, to: mte 0 se 1 iee 1 dte 1
    From iee, to: mte 0 se 1 iee 1 dte 1
    From dte, to: mte 0 se 1 iee 1 dte 1
    Ok_ops: move=1, reserve=1 sense_dev=1, sense_ele=1, unload_any=1, sense_dev_range=1
    Device characteristics: two_d=0, is_120=0, fake_mte=0, fake_iee=0, one_target=0
    State of barcode reader: present
    Display: none
    Dte 1: target 1 lun 0 name tape1 (raw device name /dev/sg1)
    warning: dte 1 may be misconfigured; (on bus 0) is at target 0, lun 5,
    which doesn't match the information provided by the library.
    Dte 2: target 2 lun 0 name tape2 (raw device name /dev/sg2)
    warning: dte 2 may be misconfigured; (on bus 0) is at target 0, lun 5,
    which doesn't match the information provided by the library.
    tape1:
    Device type: tape
    Model: [none]
    Serial number: HU10609T4R
    In service: yes
    Library: lib0
    DTE: 1
    Automount: yes
    Error rate: 8
    Query frequency: 131072KB (134217728 bytes) (from driver)
    Debug mode: no
    Blocking factor: (default)
    Max blocking factor: (default)
    Current tape: 15
    Use list: all
    Drive usage: none
    Cleaning required: no
    UUID: cb9e8dea-b6bc-102c-816e-0014384cd52a
    Attachment 1:
    Host: prsabkp01m-ebsd
    Raw device: /dev/sg1
    Attachment 2:
    Host: prsatdw01m-ebsd
    Raw device: /dev/sg1
    Attachment 3:
    Host: prsatdw02m-ebsd
    Raw device: /dev/sg1
    Connection type: SCSI
    Inquiry data:
    Vendor: HP
    Product: Ultrium 3-SCSI
    Firmware: G65W
    Serial number: HU10609T4R
    Tape state: offline
    Hardware compression: on
    Last read was: uncompressed
    Hardware encryption: not available
    Maximum block size: 2097152
    tape2:
    Device type: tape
    Model: [none]
    Serial number: HU10609T6K
    In service: yes
    Library: lib0
    DTE: 2
    Automount: yes
    Error rate: 8
    Query frequency: 131072KB (134217728 bytes) (from driver)
    Debug mode: no
    Blocking factor: (default)
    Max blocking factor: (default)
    Current tape: [unknown]
    Use list: all
    Drive usage: none
    Cleaning required: no
    UUID: bba0568c-b6bf-102c-b0b9-0014384cd52a
    Attachment 1:
    Host: prsabkp01m-ebsd
    Raw device: /dev/sg2
    Attachment 2:
    Host: prsatdw01m-ebsd
    Raw device: /dev/sg2
    Attachment 3:
    Host: prsatdw02m-ebsd
    Raw device: /dev/sg2
    Connection type: SCSI
    Inquiry data:
    Vendor: HP
    Product: Ultrium 3-SCSI
    Firmware: G65W
    Serial number: HU10609T6K
    Tape state: offline
    Hardware compression: on
    Last read was: uncompressed
    Hardware encryption: not available
    Maximum block size: 2097152
    Edited by: user12199230 on Nov 19, 2009 7:15 AM

  • Does create materialized view command creates an index?

    Does a Create materialized view command inturn creates indexes?

    Sometimes it does. Consider:
    scott@ora102> create materialized view emp_desc_mv
    2 as select e.empno, e.ename, e.sal, e.comm, d.dname, d.loc
    3 from emp e, dept d
    4 where e.deptno = d.deptno;
    Materialized view created.
    scott@ora102> select count(*) from all_indexes where table_name = 'EMP_DESC_MV';
    COUNT(*)
    0
    scott@ora102> alter materialized view emp_desc_mv add primary key (empno);
    Materialized view altered.
    scott@ora102> select count(*) from all_indexes where table_name = 'EMP_DESC_MV';
    COUNT(*)
    1
    Daniel

  • Hi, this is my first time to encounter this problem. Whenever i try to sync my songs from my PC to my Ipod, it doesnt seem to respond. When i drag and drop it, it hangs and could not transfer it. Please delp me... Thanks a bunch! :)

    Hi, this is my first time to encounter this problem. Whenever i try to sync my songs from my PC to my Ipod, it doesnt seem to respond. When i drag and drop it, it hangs and could not transfer it. Please help me... Thanks a bunch! :

    Your post is difficult to read and looks like one solid block of text...
    Some very useful Info here with regard to Photo syncing and iOS Devices...
    http://support.apple.com/kb/HT4236

  • Month View (command 3) fault, pleaseee help.

    Hi
    When I choose month view (command 3) the whole calendar dissappears, it does not crash and week/day views can be selected. I need to work on the month view, can anyone assist pleaseeeeee. thanks.
    Any clues ?
    1.5GHz PowerBookG4   Mac OS X (10.4.9)   17"

    Hi,
    Welcome to Apple Discussions.
    Quit iCal and find the com.apple.iCal.plist file in your user's Library/Preferences Folder. Delete this file and then open iCal again.
    Best wishes
    John M

  • Cs5 view command problems

    Hello,
    I'm using cs5 on a cyberpowerPC NO PROBLEMS!!! I reinstalled cs5 on a Acer (both computers 64 bits and window 7) and the view commands don't work. I can see the background image if I
    zoom @ 25% otherwise the view print size or the fit to window are empty!  Can any one help Please?
    Thanks a lots,
    Emmanuel

    I've done that, and the spinning wheel of death still happens...

Maybe you are looking for

  • Replace one itunes account with another

    I have the itunes application downloaded on my laptop but i recently made another itunes account and i want the new one to be on the Itunes application. So i uninstalled the application thinking that if i downloaded it again it would ask me for an ac

  • No Notes mailbox icon in Mail

    I have an icon for creating Notes, but none for the storage and retrieval of Notes (or to-do list, for that matter). How do I get an icon and where does it belong? Thanks, peggy

  • How to reinstall Bridge CS6?

    After severe trouble with Bridge CS6 (did not start up anymore) I decided to uninstall and reinstall it to get rid of the problems. But, how can I reinstall Bridge since it is not listed in the Apllication Manager?

  • Httpservlet   and javax sourcepath

    ok what is the story with setting class paths I am using Jbuilder to write servlets but it keeps saying that httpSaervlet is not found in the class. Even when I open httpServlet beside it.I was just seeting the source path to where the javax file was

  • Pages for PhD-Dissertation?

    Dear Friends, *has anybody of you exerience with using Pages for long texts with a lot of foodnotes??* I am working on my PhD-Dissertation in the field of Law and Economics and I need a programme that is able to cope with lots of pages. I used micros