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>

Similar Messages

  • 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

  • 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]

  • 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

  • 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)

  • Why do I get a boot drive not found error only when laptop lid has been closed?

    I've got a HP Mini 210 P/Number: VX818EA with Windows 7 Starter.
    It works fine when turning on after shutdown, but when I've put it to sleep by closing the lid it won't 'wake up', and I get a blank screen. On restarting the computer I get a 'boot drive not found' error, (3F0) which can be resolved by following the steps on this page: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01443463&tmp_task=solveCategory&lc=en&dlc=en&cc...
    I've run disk check etc as suggested on that link, no errors are found, but nothing seems to resolve the problem more than temporarily. Seems odd that this only happens if I close the lid (sleep mode with the lid up is fine, doesn't crash the computer).
    Can anyone advise?
    Thanks

    Hello,
     Very strange, can you go to BIOS and reset the setting " By Default " ?. How did you check the disk ?
    This is an unusual probleme Hp Mini 210 . And notice me after your reset the bios settings.

  • 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

  • Thunderbolt drive not going to sleep when iMac does

    Not sure if my title makes sense...
    Ok, I have an Intel iMac running the latest version of the O/S
    Attached via firewall I have a Lacie external 2big drive
    Attached via thunderbolt I have a lacie 2big thunderbolt drive
    When the iMac goes to sleep by itself, i.e. I walk away and let the system decide when to sleep, only the firewall connected drive shuts down.
    The thunderbolt drive remains live with that nice big blue lamp on the front of the drive remaining lit.
    If I manually put the imac to sleep, then both drives shut down. I'd really like both drives to shutdown properly when the system decides I've gone to bed....or gone out or whatever.
    Any suggestions?

    I have exactly the same problem with three lacie_2big drives.  Thay do not go to sleep when my iMac is sleeping.  I never had this problem untell using OS X Mavericks.  Please help!

  • 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,

  • Media not copying into event when drag and dropped

    When I add media files into an event by dragging and dropping the file into the project the file does not get moved/copied 'Macintosh's HD Projects' folder.
    Is there a setting somewhere I can change so dragging and dropping behaves the same way as when I use CMD+I to import a file?
    I am using the most up-to-date version of FCPX in Mavericks.

    How are you determining this? And what version are you using? Media doesn't get copied to project folders; it get copied to Original Media sub folders in event folders. Or it gets left in its original location with aliases pointing to the actual media.
    If you're using 10.1, try dragging to the single-star event icon in the Library list pane and then look inside Original Media..
    Russ

  • Sql type not recognized: 'int unsigned' when I expand table in Dreamweaver

    Dreamweaver warning message - "sql type not recognized: 'int
    unsigned'"
    This was happening in Dreamweaver MX and now in CS3. The
    pages using these tables are not throwing errors when I test them,
    but each time I expand a table in Dreamweaver, I get these warning
    messages. Often I get the same message multiple times and must
    click OK each time before I can proceed. Just now I had to OK the
    warning three times for a table that only has one integer field and
    two fields total.
    Any help would be greatly appreciated.
    Thanks

    Hi Bagger and Ken
    With some help from Randy Edmunds at Adobe was able to find a
    solution to this bug.
    *note I am still using DW MX 2004 so there may be some
    variation with your version.
    ANSWER: You need to add the sql type "int unsigned" to the
    dwscriptsServer.js in Dreamweaver's files.
    The file to ammend is [your path to the DW
    root]\Configuration\Shared\Common\Scripts\
    dwscriptsServer.js
    do a search for the alert: "MM.MSG_SQLTypeAsNumNotInMap" and
    then go up from there (it is about line 2059 in the DW MX 2004
    file).
    underneath a["unsignedint"] = 19;
    add a new line a["int unsigned"] = 19; // variation of
    unsigned int
    I then deleted the delete the FileCache.dat (from step #4
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19105)
    and restarted DW.
    That should fix it!
    If that doesn't work then search the DW folders for
    "MM.MSG_SQLTypeAsNumNotInMap" and ammend the sql data types where
    the functions raise the error alert.
    I hope this is helpful!
    Cheers
    Martin
    ps I would be using the CS3 web premium suite if it wasn't
    for the fact that the UK upgrade price is (£539) - >US$1000
    which is more then double what US customers pay. (OK my whinge
    over, boo hoo)

  • Self-made .aif and .mp3 Audio files play in Library and Audio Inspector windows but not in the Timeline, when dragged into the timeline under video clip already there. FCPX 10.1.4, OS 10.10.4, iMac (late 2012), audio files are recordings of my own li

    Audio clips play in Library and Audio Inspector, but not in Timeline

    dougfromwanamassa wrote:
    …but not in Timeline
    Post a screenshot of your timeline… there're several ways to mute an audio track ...

  • Insert Overlay window does not appear in Canvas when dragging in Text

    Hi, I consistently have a problem working with text. I get the Sample Text to show in Viewer, but when I try to drag it into Canvas to insert it into the Timeline, the Edit Overlay window doesn't even appear. I have no idea of what I'm doing wrong, or what other options there are for getting Text into the Timeline.
    Thanks, Bob

    It sounds as if you may have turned on image and wireframe in the viewer. If you click on the text does a white X appear across the screen? If image+wireframe is on, switch it off in the view popup. Set it to image.

Maybe you are looking for