Driver not capable

My Delphi application runs fine on Oracle8 and Oracle9 (SQLServer, Informix, Sybase, Access) databases but when connecting to an Oracle7.34 database the ODBC driver (Oracle2.05.03.01B)(Manager 3.520.5303.2) returns; "Oracle][ODBC Oracle Driver] Driver not capable".
I'm using the following connection settings for all databases: CursorLibrary = UseODBC, IsolationLevel = ReadCommitted, CursorType = Static, ConcurrencyType = Values.
Any ideas?

Oracle 7.3.4 is pretty old and has been unsupported for some time. It would surprise me if things that work with Oracle 9i don't work with 7.3.4.
Cheeers, APC

Similar Messages

  • Webi Error - Driver not capable

    Hello,
    One of our users is getting "Driver not capable" error on 1 webi report, but can run another without the error. These 2 reports come off seperate BEx querier.
    We have BO SP2 FP2.5.
    SAP authentication is set on BO server and roles are imported.
    All the universe connections are set to SSO.
    BEx does not have any authorization variable.
    There are some prompts created in the universe.
    Any resolutions?
    Thanks,
    Nikhil

    Hi Ingo,
    The user gets the error while refreshing the webi report, after answering the prompts.
    What do you mean by customized? I have created a couple of prompts in the universe.
    I isolated the error to 1 objects "calendar day". if I have the object in my Webi query, the user gets the error. If I remove it from the webi query, the user can refresh the report without error.
    BTW, the BEx query runs fine for the users with calander day.
    We have another user getting the same error on 3 other reports. But none of them use calander day.
    Nikhil

  • Driver not capable error. Why?

    I try to access an Oracle 8i DB with the following code:
    <%@page language="java" import="java.sql.*"%>
    <%
    Driver DriverRecordset1 = (Driver)Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection ConnRecordset1 = DriverManager.getConnection("jdbc:odbc:celsius","UID","PW");
    PreparedStatement StatementRecordset1 = ConnRecordset1.prepareCall("SELECT * FROM CELSIUS.PERSON");
    StatementRecordset1.setQueryTimeout(0);
    ResultSet Recordset1 = StatementRecordset1.executeQuery();
    boolean Recordset1_isEmpty = !Recordset1.next();
    boolean Recordset1_hasData = !Recordset1_isEmpty;
    int Recordset1_numRows = 0;
    %>
    But i always get an error : Driver not capable. Can anyone help.
    BTW how do i register the CLASSPATH for the oracle drivers lcated in the lib subdirectory of my JDeveloper??
    thanks in advance
    alex
    null

    go to project , project properties in main menu .
    click on add button next to java libraries ,
    you will see name of java libraries corresponding to the ones in ur jdev/lib dir

  • Err: CLI0150E Driver not capable. SQLSTATE=S1C00 when dragging a table...

    <p>Hello everyone,</p><p> first i wanna tell you that I love your CR4E product! You did an awesome job!</p><p> Now, I am having a problem with creating a report using DB2 data. I have a ODBC connection, and I successfully connect to DB2. I can see all the tables; however, when I try to see sample data from a table i get java.sql.SQLException: General error message.</p><p>Also, if I try to drag a table to a report it gives me  CLI0150E Driver not capable. SQLSTATE=S1C00 error.</p><p> </p><p>I have downloaded new DB2 drivers, and when i create a new Data connection I pick db2jcc.jar file.</p><p>I really dont know what the problem is.</p><p>Please help.</p><p>thanks,</p><p> </p><p>nn </p>

    <p>Hi, you mention that you have an ODBC connection, but you also talk about connecting to the db2jcc.jar, can you provide me with some more details regarding what your database connection string looks like in the Database Explorer view? Are you connecting to the ODBC DSN using the JDBC driver or connecting directly to the DB2 server? We have tested the DB2 connections with CR4E so it should work without too many issues. Unfortunately, I do not have a DB2 server installed on my machine and I am on the road this week so I cannot test this at this time. However, I will give this a try when I get in next week against our test database servers and let you know the connection details that we used for our testing. In the meantime any more detail you can give me on exactly how you are setting up your connection will be useful. <br /></p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a>          </p>

  • Driver not capable error

    Hai,
    I am facing the problem in websphere,
    [4/21/08 12:42:41:296 IST] 00000038 SystemOut O java.sql.SQLException: [TimesTen][TimesTen 7.0.4.0.0 ODBC Driver]Driver not capable
    I configured Websphere Datasource to Timesten database using direct driver, passthrough=3.
    Can you please tell me what is the solution for this problem.

    This is the Java Script calling Stored procedure SP_CHK_TIMESTEN,
    String m_no = "1001";
                   System.out.println(m_no);
                   String m_name = "DBA";
                   System.out.println(m_name);
              stmt = connDB.prepareCall("call SP_CHK_TIMESTEN(?,?,?)");
                   stmt.setString(1,m_no);
                   stmt.setString(2,m_name);
                   stmt.registerOutParameter(3, Types.VARCHAR);     
                   stmt.execute();
                   System.out.println(stmt.getString(3));
                   /* while(rs1.next())
                        System.out.println(rs1.getString(1));
                   catch(Exception e)
                        System.out.println("Exception in mschema "+e);
    And this is the error i am facing in Websphere,
    77ad48d0 PrivExAction W J2CA0114W: No container-managed authentication alias found for connection factory or datasource Data source 1.
    [4/24/08 19:13:37:500 IST] 77ad48d0 SystemOut O Timesten Check2
    [4/24/08 19:13:37:500 IST] 77ad48d0 SystemOut O com.ibm.ws.rsadapter.jdbc.WSJdbcDataSource@52f648c1
    [4/24/08 19:13:37:500 IST] 77ad48d0 SystemOut O 1001
    [4/24/08 19:13:37:500 IST] 77ad48d0 SystemOut O DBA
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O Exception in mschema java.sql.SQLException: [TimesTen][TimesTen 7.0.4.0.0 ODBC Driver]Driver not capable
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O LSIL
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O bank12
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O 192.168.1.81
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O GOKULNATH
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O Timesten Check4
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O Timesten Check5
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O Timesten Check6
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R java.sql.SQLException: [TimesTen][TimesTen 7.0.4.0.0 ODBC Driver]Driver not capable
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbc.createSQLException(JdbcOdbc.java:3187)
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbc.standardError(JdbcOdbc.java:3321)
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbc.standardError(JdbcOdbc.java:3286)
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbc.SQLBindOutParameterString(JdbcOdbc.java:252)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbcCallableStatement.registerOutParameter(JdbcOdbcCallableStatement.java:233)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbcCallableStatement.registerOutParameter(JdbcOdbcCallableStatement.java:134)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.rsadapter.jdbc.WSJdbcCallableStatement.registerOutParameter(WSJdbcCallableStatement.java:611)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at lsi.common.ob.entry.SPAccessManager.getSpValue(SPAccessManager.java:1198)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at lsi.common.ob.entry.XMLHTTPListener.doPost(XMLHTTPListener.java:79)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)

  • MS Query "Driver Not Capable" Error

    Has anyone experienced the error "Driver Not Capable" when trying to connect
    to a Citadel database from MS Query/Excel? I can get the query to work
    perfectly on one machine, but I installed a fresh copy of MS Office 97 on
    another machine and I get this error every time.
    If anyone knows how to fix this please reply.
    Thanks,
    Geoffrey B. Klotz
    GK Associates, Inc.
    TEL: (805) 523-8700
    FAX: (805) 523-1216
    EMAIL: [email protected]

    Make sure the "Use the Query Wizard..." option is unchecked in the 'Choose
    Data Source' dialog box when you are creating the query.
    Khalid
    "Geoffrey Klotz" wrote:
    >Has anyone experienced the error "Driver Not Capable" when trying to connect
    to a Citadel database from MS Query/Excel? I can get the query to work>perfectly
    on one machine, but I installed a fresh copy of MS Office 97 on>another machine
    and I get this error every time.
    If anyone knows how to fix this please reply.
    Thanks,
    --Geoffrey B. Klotz
    GK Associates, Inc.
    TEL: (805) 523-8700
    FAX: (805) 523-1216
    EMAIL: [email protected]

  • WR DVD Drive not capable of writing

    i have a ThinkPad W520 (4276-37U).   In the product spec it says the following regarding the DVD drive "CDRW/DVDRW",  which I assume means read / write.   I'm trying to burn and ISO image to a DVD.    Windows reports that the drive is not capable of writing and infact the device driver says ROM in the description
    "Optiarc DVD ROM DDU7710H SCSI CdRom Device"
    Do I have the wrong driver?   If so,  please point me to the correct RW driver because I have not been able to find it on your site.    If not,   how do I get the drive I purchased?

    You need to buy a DVD-RW or DVD+RW. DVD-R or DVD+R is not writeable. You probably inserted a DVD+R or DVD-R. Or maybe it was written already.
    Jonas
    Microsoft MVP: Windows Consumer Expert
    Yoga Tablet 2 10 || ThinkPad X1 Carbon (20A7007MPH) || ThinkPad Helix (3698-6EU) || IdeaCentre B540
    Twitter: @jonashendrickx

  • When i execute this code i get an error " SQLException: Driver not capable"

    Hi,
    I have a piece of code that should update DB2 Database
    The code is as follows :
    try {
    con = DriverManager.getConnection(url,"administrator", "PCTEAM2000");
    stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
         ResultSet.CONCUR_UPDATABLE);
    ResultSet uprs = stmt.executeQuery("SELECT * FROM GEETHA");
    uprs.moveToInsertRow();
    uprs.updateString("NAME", "Kona");
    uprs.insertRow();
    uprs.moveToInsertRow();
    uprs.updateString("NAME", "SAI");
    uprs.insertRow();
    uprs.beforeFirst();
    while (uprs.next())
    String s = uprs.getString("NAME");
    }uprs.close();
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    Thanks

    con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.);
    some drivers wont support CONCUR UPDATABLE...
    by defualt all drivers are TYPE_SCROLL_SENSITIVE.so its not a problem.
    check your driver documentation whether is support CONCUR_UPDATABLE r not.
    chek for jdbc 3.0 complaint jdbc driver ..
    sree

  • The database error text is: (CS) "Driver not capable" (WIS 10901)

    Hi all,
    We have an OLAP universe basically built on BW query and we are creating a web intelligence report on it. We added a new field to the cube "Date Changed" the infoobject used is delivered 0CPR_CHON which has 0DATE as ref. characteristic.
    When we used this dimension in webi it came over as characteristic rather than date so we went to the universe and changed the properties to Date and we have started getting this error. I looked up and there are some notes and posts on this and apparently it is not supported by SAP.
    Has anyone found a workaround? Another thing I am confused is ...in the same cube we have Valid From and valid to dates and those dimensions come over as dates in webi..so what is different between the two?
    If I create a new universe on this same connection (query) then it does come over as date so how can we make it working on old universe?
    Thanks.

    Hi Henry,
    0CPR_CHON is attribute of changed version but how would that matter....it is used as standalone infooobject in the cube and that is the reason it coming over as dimension by default but the type is coming over as Char...instead of Date.
    I am making that to date and getting that error. It works if I build the universe all over again (brand new).
    These are some of the notes: 1457821,1184983, 1432272, 1384547, 1407631, 1466213.
    Thanks,

  • Want to know if my laptop's driver is capable of something i will explain indetail

    i make dvds and i  had bought a ton of dual layer DL blank ones. they seemed to of worked when i burned them but would not play back on the dvd player. they did however play back on my lap top. so maybe my question here is even reduandant and if so, i am appologizing in advance. when googling my issue, this is what i found. and i can't see on my drive or maybe i am not looking in the proper place to view it. i am assuming the la top "is" capable or why would it of burned it to be played back on my lap top? but not on the dvd? believe me, i have googled for months and found no good answer as well did anyone else i saw.
    Burning Blank Double Layer DVDs
    Burning or duplicating double layer DVDs is another matter. Currently, most computer DVD drives or component DVD recorders are not capable of burning or recording on double layers. This is true for duplicators as well. However, double layer capable drives and duplicators are available.
    If you are unsure if your computer has a double layer (or dual layer) burning capable drive, first check the drive to see what the labels say. If it has a label with a DL, then it is probably double layer capable.

    Hi,
    You are saying it CAN burn DL dics and it CAN play burnt DL dics but other player(s) can't play ITS burnt dics. Which software do you use to burn DL dics ? Do you close or finalize/finalise the dics at the end of burning session (or sessions for multi sessions).  You need to close or finalise/finalize burning session(s) otherwise other player(s) can't see.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • USB flash drive not being recognized as a startup disk?

    Hi everyone, I've been searching for similar questions but haven't found one that exactly matches my experience.  So, I'm going to try and explain my issue in hopes that others may be able to help.
    I'm trying to create a bootable flash drive from which I can install lion, and eventually Mountain Lion when it is released onto my main hard drive.  My main reason for doing this is  to have a way that I can perform a clean install of the operating system.  Yes, I know I am old fashioned, but sometimes I prefer clean operating system installs rather than upgrading.  In any case, I have downloaded the lion setup file from the Mac app store (Install Mac OS X Lion.app) and am following the directions given on this page to do this procedure.  These directions are consistent with directions found on various other sources online.  Having this file saved to my hard drive, I was able to find and extract the disk image file from the package InstallESD.dmg to another folder.  Once extracted, I plugged in my flash drive and attempted to use disk utility to restore the disk image to my flash drive.  I selected the dmg file as my source and the flash drive as the destination.  I then clicked restore and was warned that all data on the flash drive would be erased while the disk image was restored to my flash drive.  I was prepared for this, so I allowed the process to continue, and it appeared to proceed with no problem.  When disk utility was finished, I did a quick look at my flash drive using finder and confirmed that it did in fact appear to contain a disk image of the .dmg file.  Here's where things get interesting however.
    When I go to system preferences and choose startup disk, my flash drive is not listed as an optional disk from which to boot, only my hard drive ("macintosh HD").  When I restart and hold down the option key, my flash drive is not listed as a startup disk either.  I know that the non-intel based macs are not capable of booting from USB, but this is certainly not my issue as I have an intel macbook pro, mid 2009 model.  My flash drive is about 4 or 5 years old; it is a PNY Technologies Attaché 16 gb flash drive.  I have no trouble viewing and transferring files to and from the flash drive, the only issue is that my computer seems to refuse to recognize it as a startup disk.  Are there certain flash drives which do not support booting?  This would normally seem more like a computer issue rather than a flash drive issue, but most people seem to have no problem doing what I'm trying to do.  Unfortunately I do not have another flash drive with which to test this, and I didn't really feel like buying another flash drive just to test this out if in fact this is not a flash drive issue.  I am planning to upgrade to the macbook pro retina soon which of course does not have an optical drive, which is one of the reasons I would like to get this working.  Can anyone think of something else I can try?  Is it more likely an issue with the macbook pro or the flash drive?
    Thanks in advance for any thoughts.

    The format says Mac OS Extended.  All of the settings were set during the disk image restore process.  Even if I format the flash drive as extended journaled or some other format, all of these settings are reverted when I do the restore from the disk image.  I will just copy all of the information that disk utility has so that you can see it.
    Mount Point :     /Volumes/Mac OS X Install ESD     Capacity :     16.11 GB (16,106,110,976 Bytes)       Format :     Mac OS Extended     Available :     12.3 GB (12,303,499,264 Bytes)       Owners Enabled :     Yes     Used :     3.8 GB (3,802,611,712 Bytes)       Number of Folders :     128     Number of Files :     876

  • "Slave" drive not appearing

    So I just tossed a couple new HD's in my G4. The drives are:
    1 - 120GB hooked up to G4's built in IDE cable
    1 - 320 GB Drive hooked up to IDE Controller card as primary/master drive
    and both show up w/ no issues on boot
    BUT then here's where it gets interesting:
    I have the other two drives hooked up to the second slot on the IDE Controller card on one cable as Master/Slave. I have checked jumpers, cable position, etc over and over again, but no matter what I do, only one or the other will appear on the desktop/disk utility/etc. I've gone so far as to switch up the jumpers to every conceivable permutation as well.
    In the end it just seems if I set one drive to master and the other to slave, the slave drive will never appear.
    It is most definitely not a power issue, and right now I'm pretty much stumped.
    Any help appreciated
    cheers

    IBM ide 12 gig drive (master) IDE 1
    western didgital 80 gig drive (slave) IDE1
    Hello, I am not sure if you are aware of this but,
    New hard drives transfer data faster than the old drives. Because over the years the speeds have increased, motherboards can run hard drives at different speeds, known as ULTRA DMA MODES / ATA MODES.
    EG, Seagate barracuda 80GB ATA 133
    When plugging a hard drive to the motherboard the BIOS can detect the hard drive speed, in effect this sets the hard drive transfer rate on the IDE cable.
    So ATA MODE 6 = DMA133.
    Your new hard drive is capable of this.
    Now by plugging an older hard drive on the same IDE cable, you are making the cable run with 2 different speeds, as the 12Gb drive is probably UDMA 33, MODE 2.
    This can cause interference within the IDE cable and in extreme cases cause data loss. Sometimes the Faster drive will be set to match the slower DMA MODE.
    An 80pin IDE cable reduces the interference but you still may get problems especially with the difference in Hard drives. (very old and very new).
    So you should remove the OLD 12Gb drive and leave the new drive on the Cable IDE1. If you buy another drive, which is UDMA 133 then you can put it on the same cable, IDE1.
    That is also why everyone/manufacturers state run CD drives on a different cable than hard drives, because CD drive run at DMA mode 2.  

  • Slave drive not accesible

    hello, im new to this so i hope my lack of knowledge isnt to frustrating. i need help though. i recently 95% completed my first build. using the items listed below. now i cant access my slave drive. i receive a message telling me " d: drive not formatted do you wish to format now" in windows (the drive in question has always been a slave never had any os installed but was present with the xp os on master drive in previous system)  both hard drives and cds are present in bios and in windows , i was wondering if there is ANY way to save teh data or if im out of luck thank you for any information. look forward to learing more .
    windows XP pro  OS
    MSI pt880 NEO-LSR main board
    Pentium 4 2.40A Ghz 104 V max cpu
    512 ddrram memory,( more to follow)
    IBM ide 12 gig drive (master) IDE 1
    western didgital 80 gig drive (slave) IDE1
    cd rom (master) IDE2
    plextor cd/cdw (slave) IDE2
    im not sure if you need more specs than that please let me know if you do i can look it up as i said im new but willing to learn. thank you

    IBM ide 12 gig drive (master) IDE 1
    western didgital 80 gig drive (slave) IDE1
    Hello, I am not sure if you are aware of this but,
    New hard drives transfer data faster than the old drives. Because over the years the speeds have increased, motherboards can run hard drives at different speeds, known as ULTRA DMA MODES / ATA MODES.
    EG, Seagate barracuda 80GB ATA 133
    When plugging a hard drive to the motherboard the BIOS can detect the hard drive speed, in effect this sets the hard drive transfer rate on the IDE cable.
    So ATA MODE 6 = DMA133.
    Your new hard drive is capable of this.
    Now by plugging an older hard drive on the same IDE cable, you are making the cable run with 2 different speeds, as the 12Gb drive is probably UDMA 33, MODE 2.
    This can cause interference within the IDE cable and in extreme cases cause data loss. Sometimes the Faster drive will be set to match the slower DMA MODE.
    An 80pin IDE cable reduces the interference but you still may get problems especially with the difference in Hard drives. (very old and very new).
    So you should remove the OLD 12Gb drive and leave the new drive on the Cable IDE1. If you buy another drive, which is UDMA 133 then you can put it on the same cable, IDE1.
    That is also why everyone/manufacturers state run CD drives on a different cable than hard drives, because CD drive run at DMA mode 2.  

  • OpenSQLException: JDBC driver not supported?

    Hi @ all,
    I need to connect to a DataSource with the WebAS 7 via SQLJ. As I try to connect to it with the SQL Engine set to "Vendor SQL" I get:
    "The given connection "com.sap.engine.services.dbpool.cci.ConnectionHandle" is not an Open SQL connection"
    As I try to get a connection to the dataSource via SQLJ with SQL Engine set to "Open SQL" or "Native SQL", I get the following Exception:
    ResourceException in method ConnectionFactoryImpl.getConnection(): com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException thrown by the physical connection: com.sap.sql.log.OpenSQLException: JDBC driver not supported for MS_SQL_SERVER database.
    How can I get the SQLJ- Support?
    Kind regards,
    Uwe
    Message was edited by:
            Uwe Kunath

    Hi Uwe, all,
    for using Native SQL/JDBC or Open SQL/JDBC, the database itself and the JDBC driver must be recognized as being in the supported set. The answer to that depends on what you mean in detail by "Web AS 7". Roughly speaking, it should be the JDBC driver released by Microsoft.
    Open SQL/SQLJ is only available with a Open SQL/JDBC data source. Hence, there is no way around using Open SQL/JDBC.
    Now, Open SQL/JDBC and Open SQL/SQLJ both requires tables (and other database objects) to be deployed via the Open SQL for Java Dictionary. Up to and including WebAS Java 7.1, the Open SQL/Dictionary supports deployment to the system database, i.e. the database (and schema) used by the installed server itself.
    Given the above, the JDBC driver for a Open SQL/JDBC data source must already be present, because it must be the driver used by the server itself. When defining data sources, it is referred to as "system driver".
    This leaves us with a Open SQL/JDBC data source to the system schema. You can then also consider to establish a data source alias to the server's system datasource.
    Hope this helps. Best Regards, Dietamr

  • Can some one help me with diagnostic test result " apple mobile device driver not found"?

    I bought an iPhone 4gs 32gb from Singapore. iso 4. I'm living in Chennai, India. To connect it to my computer (windows XP,), I have downloaded iTunes 10.6.1.7. Unfortunately iTunes is not recognizing my iPhone.  I had tried to troubleshoot it by reinstalling iTunes (2 times). I have restarted the apple mobile device from control panel. I try connecting my iphone in another usb port. but no use. I don't know what am I missing?.  iTunes opens on my computer. but doesn't recognize my device. when I click on help. it says an "unknown error has occurred. your computer is not connected to internet. please check your internet connection and try again later". I don't know what to do? could you please help me? thank you so much for your help and time.
    when I update the usb driver (C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers.Double-click the usbaapl file.) I followed the procedure from this site. http://support.apple.com/kb/TS1538 when I finished, it says "the specified location does not contain information about your software"
    I did the apple's diagnostics test on my computer. I'm pasting the result for your info.
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    System manufacturer System Product Name
    iTunes 10.6.3.25
    QuickTime not available
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0013AC2C08548378
    Current user is an administrator.
    The current local date and time is 2012-06-28 15:23:45.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel(R) G41 Express Chipset
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {D85300A1-330D-41ED-AC5A-EC032B22FBF0}
    Description:            Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller - Packet Scheduler Miniport
    IP Address:             192.168.1.3
    Subnet Mask:          255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:      Yes
    DHCP Server:         192.168.1.1
    Lease Obtained:     Thu Jun 28 15:17:19 2012
    Lease Expires:       Fri Jun 29 03:17:19 2012
    DNS Servers:         192.168.1.1
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was unsuccessful.
    The network connection timed out.
    Basic connection to the store failed.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    The network connection timed out.
    iTunes has never successfully accessed the iTunes Store.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    G: Optiarc DVD RW AD-7220A, Rev 1.01
    Drive is empty.
    **** Device Connectivity Tests ****
    iPodService 10.6.3.25 is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C8.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C9.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CA.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CB.  Device is working properly.
    Intel(R) N10/ICH7 Family USB2 Enhanced Host Controller - 27CC.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    I have the same problem. I think that someone tried my iphone before me because when I want to reset it, I'm invited to enter a password that I didn't set. Also, when I go the Map application, the iphone indicate that I'm locateded in China while I'm in Tunisia. Now, I can't connect to my iphone to itunes, and I can't reset it because it ask me to enter a password that I didn't set.
    This is my post:
    https://discussions.apple.com/thread/4063223
    Please, we need your help.

Maybe you are looking for

  • Code ran fine in Eclipse, no output as a Jar file..help!

    I have been working on a piece of code that reads an excel spreadsheet, and writes xml files based on that. (I'm to cheap to buy the numerous software out there) The code ran beautifully in Eclipse, and all the right dialog windows and console output

  • Creation of mandatory UDF in A.R Invoice

    Dear All, I am facing the problem for mandatory field creation. Even i write this below code when adding A.R Invoice it mandatory field is not working. alter proc SBO_SP_TransactionNotification   @object_type nvarchar(20),     -- SBO Object Type  @tr

  • Test Presentment and Field Order

    Okay, I think I've found my problem. I'm developing my first form ever with Adobe Output Designer. And I'm using the Test Presentment option to see where all the fields are on the form. However, it appears that the fields are displaying in sequential

  • ADFapplication stops working after few days of uptime : invalidobjname

    We are currently doing uptime testing of our prodcut. We are using JDEVADF_11.1.1.7.0_GENERIC_130226.1400.6493. After 3 days uptime our application stops working and we are seeing following errors in the log :- oracle.jbo.InvalidObjNameException: JBO

  • Where do i go if my iphone got stolen ? :(

    My iphone got stolen in the city and I live upstate I have far too much information to just let it go what can I do to get it back ?