How to update oracle jdbc driver to 11.1.0.7.0 JDBC Drivers

HI,
I got a jdbc exception *" java.lang.ArrayIndexOutOfBoundsException "*.
I have known that it is a Oracle JDBC bug and Oracle BUG number is BUG-6396242.
The problem is too many rows per database transaction and it is fixed at version 11.1.0.7 Oracle JDBC Drivers.
Here is the 11.1.0.7 Oracle JDBC Driver Readme.
http://www.oracle.com/technetwork/database/enterprise-edition/111070-readme-083278.html
and the download
http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-111060-084321.html
My question is :
*1.How to update oracle jdbc drivers with those downloads ?*
(ps. I have replaced ojdbc5_g.jar, ojdbc5.jar, ojdbc6_g.jar, ojdbc6_g.jar in $ORACLE/jdbc, but it did'nt work. )
*2.My Oracle version is 11.1.0.6.0, will it be OK if only update the JDBC driver?*
*3.Do I need to update the jdbc driver where my program runs on the client side ?*
Thanks for answers~ :)

Upgrade your database version to 11.1.0.7.
Installation docs are included with all patches and upgrades.

Similar Messages

  • How to Update Canon MG3120 Driver in Windows 8?

    The PIXMA MG3120 Wireless Inkjet Photo All-In-One delivers fantastic quality, versatility, and ease of use. It has a lot of advantages but one disadvantage. If you do not update Canon MG3120 driver, the printer just not works. So here is the question: how to update Canon MG3120 driver in windows 8.

    Hi Tessa053,
    You can download the latest drivers for the printer from the Canon USA website to update the printer.  Please click here to go to the Drivers and Software page for the PIXMA MG3120.  Once on the initial download page for your model, please do the following:
    1. Verify that the operating system detected in the "OPERATING SYSTEM" drop-down menu is correct, and if it is not, please click the drop-down menu to select your operating system.
    2. Next, please click on the red arrow next to the "RECOMMENDED FOR YOU" section and click the MINI MASTER SETUP file. When you do, a red DOWNLOAD button will appear. Please click on the checkbox below the DOWNLOAD button, then click the red DOWNLOAD button to begin the download. The time for the download process may vary depending on the speed of your Internet connection and the size of the file being downloaded.
    Once you have downloaded the Mini Master Setup file, please double-click on it to install the drivers on your computer.  
    Hope this helps!
    This didn't answer your question or issue? Please call or email us at one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • How to update Oracle DB 9.2.0.1 to 9.2.0.3 ?

    Execute me, how to update oracle database 9.2.0.1 to 9.2.0.3 ?
    My OS is Windows XP , I can't find the db 9.2.0.3 version in download zone .
    Please tell me thank you very much .

    The 9203 patch is not available on OTN. You can download it from metalink(http://metalink.oracle.com) if you have a support contract.
    Regards,
    Anupama

  • How to use oracle thin driver?...pls help

    Hello. I am trying to insert a word file into my Oracle 9i database using JSP. I have tomcat running as my standalone server. So far, i have been using the sun.jdbc.odbc driver to implement all my DB accesses. Recently however, i found out that in order to use Oracle specific objects such as BLOBS or BFILES, i have to use the oracle thin driver or OCI driver.
    So far, i have downloaded the thin driver and put it into the tomcat shared/common folder and also put the .jar file into my classpath. Now, i am having trouble as to how to call the oracle thin driver inside my JSP code.
    My previous code read as:
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:Andy","user","pass");
    How do i switch over to the oracle thin driver in JSP? Any help would be much appreciated. Thank you
    Andrew

    Class.forName ("oracle.jdbc.driver.OracleDriver");
    Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@hostname:port:SSID", "user", "password");

  • How to use oracle thin driver with jsp?...pls help

    Hello. I am trying to insert a word file into my Oracle 9i database using JSP. I have tomcat running as my standalone server. So far, i have been using the sun.jdbc.odbc driver to implement all my DB accesses. Recently however, i found out that in order to use Oracle specific objects such as BLOBS or BFILES, i have to use the oracle thin driver or OCI driver.
    So far, i have downloaded the thin driver and put it into the tomcat shared/common folder and also put the .jar file into my classpath. Now, i am having trouble as to how to call the oracle thin driver inside my JSP code.
    My previous code read as:
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:Andy","user","pass");
    How do i switch over to the oracle thin driver in JSP? Any help would be much appreciated. Thank you
    Andrew

    my code is:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    conn = DriverManager.getConnection(sConnStr, sUser, sPassword);
    notice the driver --"oracle.jdbc.driver.OracleDriver"!
    and copy the class12.zip to lib path
    if still not work
    change the class12.zip to class12.jar
    good luck

  • How to install Oracle-ODBC-Driver in WAS 6.40

    Hello,
    I'm new in Netweaver/WAS. I developed a Webservice, which uses JDBC to access a oracle-Database. I use the JDBC-Driver in classes111.zip. So classes111.zip has to be in the classpath.
    For Tomcat there exists a lib-Folder, where I cant copy the driver, so that every deployed Application/Webservice etc. can use it.
    Is there such a Folder in WAS, or how can I deploy the Driver to WAS?
    Thank you,
    Chris

    Hi,
    this thread should answer your question:
    Where must I add the classe12.zip from Oracle in WebAS
    Regards,
    Ivo.

  • How to set oracle thin driver for jdbc2.0 in WLS6.1?

    I want to use oracle thin driver for jdbc2.0 in WLS6.1.
    I just set it like what it look in jdbc1.2.
    In my code, I import the classes under package oracle.sql.* and oracle.jdbc.*.
    When I cast the connection from (DataSource)ctx.lookup("myPool").getConnection();
    to oracle.jdbc.OracleConnection,
    it raise the exception java.lang.ClassCastException: weblogic.jdbc.rmi.SerialConnection.
    Can any one tell me how to solve it? Thanks

    Hi Andy,
    You can not cast a connection returned from datasource
    to oracle.jdbc.OracleConnection as it's a kind of an RMI
    stub thus has nothing to do with oracle. Could you tell us
    what you're going to acomplish? We'll try to offer a solution.
    Regards,
    Slava Imeshev
    "Andy Qiu" <[email protected]> wrote in message
    news:3d74787c$[email protected]..
    >
    I want to use oracle thin driver for jdbc2.0 in WLS6.1.
    I just set it like what it look in jdbc1.2.
    In my code, I import the classes under package oracle.sql.* andoracle.jdbc.*.
    When I cast the connection from(DataSource)ctx.lookup("myPool").getConnection();
    to oracle.jdbc.OracleConnection,
    it raise the exception java.lang.ClassCastException:weblogic.jdbc.rmi.SerialConnection.
    Can any one tell me how to solve it? Thanks

  • How to install Oracle ODBC driver...?

    TOM,
    Presently, I have oracle client version. But there no Oracle ODBC driver in my PC. But, I want to install only Oracle ODBC driver in my PC for ODBC Connectivity purpose.
    How to install & where can get the source?

    I found out the real answer!!!
    On another thread there was a link to the client 10g installation. I download that 480Meg monster. Unzipped the package and launced the setup.exe.
    You can then install just the ODBC using the custom option. But, it will not install the tnsnames.ora file. If you have ever done this from a VB app, copy the tsnnames.ora over to the \network\admin folder. It's usually under the oracle\product\client\10.0.2\ folder. Once installed you can launch the ODBC administer either from the link Oracle installs or from the control panel.
    Next, you need to make sure the folders where the .dll file is readable to the iis. Change the folder to add whatever permission group you use for iis (I happen to have setup a local users group {machinename\users}. Add them to the entire folder structure (check the embedded folders to ensure they are readable).
    While setting up the ODBC, the TSN names will now be listed from the tsnnames.ora file (if properly located). To make the connection work, the userid should be 'userid;pwd=password'. Otherwise the connection failed for me.
    Now, if your connection works okay from the odbc test connection, it will probably fail if accessing through iis (like from a .asp page). There are environment path variables that need to be set. Reboot the server for them to get set. Otherwise you will get a ODBC driver can not be loaded do to system error 1114 message.

  • How to update Oracle Release 10.2.0.1 to 10.2.0.3

    Hi,
    Can anybody give me hint how can i update my oracle version 10.2.0.1 to version 10.2.0.3.
    I have installed oracle 10gR2 with following:
    SQL> select * from v$version;
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Now how to update to Release 10.2.0.3 - Prod
    Regards,
    Rushang

    Patchset contain readme.txt , it has all steps that need to follow.
    Also check Installation guide
    Installtion Guide

  • How to update Oracle Client

    Hey,
    I downloaded and installed the Oracle Client Version 10.2.0.1 on Windows x86
    Now I would like to update this oracle client, but how ?
    I installed the software to
    C:\oracle\client
    Now I downloaded Patchset 3 (10.2.0.4)
    But I can´t install this patchset, because I can´t select the folder c:\oracle\client --> OUI-10136: OracleHome already exists
    But thats the home I need to update, right ?
    How to update the oracle client software ?
    Is there any full package to download for version 10.2.0.4 ?

    Absolut weird.
    I can´t use the drop down menu.
    It looks like disabled.
    But acutually you can (and have to) click on the little arrow, pick the default value and then the installation works.
    Thanks a lot
    ´
    Christian

  • How to update video card driver?

    Hi, I have a Toshiba satellite pro C660-1LR laptop and I don't know how to update the video card driver which is an "Intel® HD Graphics". I have been to the intel site and when scanning for updates I was given this message:
    "A customized computer manufacturer driver is installed on your computer. The Intel Driver Update Utility is not able to update the driver. Installing a generic Intel driver instead of the customized computer manufacturer driver may cause technical issues. Contact your computer manufacturer for the latest driver for your computer."
    I was wondering where to go from here as the lack of update for my video card driver is preventing me from playing some games.
    Any help would be greatly appreciated.

    driver updates for your system would be on this page:
    http://uk.computers.toshiba-europe.com/innovation/​download_drivers_bios.jsp?service=UK&mode=allMachi​...
    You don't want to risk upgrading your system with non-Toshiba drivers
    Qosmio X875 i7-3630QM, 32GB RAM, OCZ SSD Qosmio X505 i7-920XM, PM55, 16GB RAM, OCZ SSD
    Satellite Pro L350 T9900, GM45, 8GB RAM , Intel 320 SSD (my baby) Satellite L655 i7-620M, HM55, 8GB RAM, Intel 710 SSD (travel system)

  • How to Update Canon D530 Driver?

    Canon  printer is normal to us. Your small office or home office will experience excellence and reliability with the imageCLASS D530 multifunction copier. The D530 offers advanced copy, print and scan features that will fit perfectly with your business needs. But your outdated or corrupt drivers may cause your printer refuse to work.
    At this time, you should update or download a new version driver. Follow this website to download and update a driver for a Canon printer.Click here>> Printer Drivers Download 

    Hi Tessa053,
    You can download the latest drivers for the printer from the Canon USA website to update the printer.  Please click here to go to the Drivers and Software page for the PIXMA MG3120.  Once on the initial download page for your model, please do the following:
    1. Verify that the operating system detected in the "OPERATING SYSTEM" drop-down menu is correct, and if it is not, please click the drop-down menu to select your operating system.
    2. Next, please click on the red arrow next to the "RECOMMENDED FOR YOU" section and click the MINI MASTER SETUP file. When you do, a red DOWNLOAD button will appear. Please click on the checkbox below the DOWNLOAD button, then click the red DOWNLOAD button to begin the download. The time for the download process may vary depending on the speed of your Internet connection and the size of the file being downloaded.
    Once you have downloaded the Mini Master Setup file, please double-click on it to install the drivers on your computer.  
    Hope this helps!
    This didn't answer your question or issue? Please call or email us at one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • How to update oracle Oracle by using JDBC

    Mostly we used and still using the following way, as well as it was recommended by oracle official document.
    String empty_string = "need to be updated";
    conn = getConnection();
    pStmt = conn.prepareStatement("SELECT REFERENCE FROM activity WHERE ID = ? FOR UPDATE");
    pStmt.setLong(1, 1);
    rset = pStmt.executeQuery();
    Clob clob = null;
    while (rset.next()) { 
    clob = rset.getClob(1);
    Writer writer = adapter.getCharacterOutputStream(clob);
    writer.write(empty_string);
    writer.flush();
    writer.close();
    pStmt = conn.prepareStatement("update activity set REFERENCE = ? WHERE ID = ?");
    pStmt.setClob(1, clob);
    pStmt.setLong(2, 1);
    pStmt.executeUpdate();
    Now I want use the second way as below, to be honest I never used it before so I wonder can it work properly? as it did not require an explicit lock. will it bring potential risk? according your experience if it work well, which did better performance?
    1. String toBeUpdated = "need to be updated";
    2. StringReader clob = new StringReader(toBeUpdated );
    3. pStmt = conn.prepareStatement("update activity set REFERENCE = ? WHERE ID = ?");
    4. pStmt.setCharacterStream(1, clob, toBeUpdated.length());
    5. pStmt.setLong(2, 1);
    6. pStmt.executeUpdate();

    Welcome to the vast OTN forums!
    If you are asking about jdbc specifically, perhaps the relevant forum is: {forum:id=1050}.
    If what you really are asking is something like (without java code and context):
    "I used to do Select.. for update, followed by update table .... Can I instead use only update table ... ? When and why would you use one or the other?"
    Then this forum might be ok, but the SQL and PL/SQL forum might be even better: {forum:id=75}

  • How to update Seagate hard drive firmware from DVD drive in G4 Powermac DA

    Posted earlier in wrong forum. Apologies if you see this twice.
    Short version of story:
    Just put Sonnet PCI SATA card in G4 Digital Audio Powermac running Tiger. Have replaced two IDE drives with Seagate Barracuda 7200.11 1 TB hard drive. It's recognized and working fine. EXCEPT: this is the now infamous drive ST31000340AS that WILL most certainly fail if it does not get the firmware update that Seagate has made available. (These drives are failing like crazy-- Google for info, do not buy!) I have the firmware update on CD as an ISO file (of course Seagate makes nothing that it Mac friendly but this has worked for other Mac users). But when I try to flash the firmware by starting from the CD ("C" key held down), nothing happens. The G4 just goes ahead and starts Tiger 10.4.11. I have also tried holding down "O + F + option + control on start up. I'm not getting anywhere.
    Since the drive is functional and it's the only drive in the G4, what am I doing wrong? Help!

    This is dated January 21st, so I hope it's been updated...
    http://forums.seagate.com/stx/board/message?board.id=ata_drives&message.id=5692
    Also, I found this:
    MOST IMPORTANT - If you have a reasonable suspicion that you may have an affected drive - do not power the unit off - make fresh backups immediately. The power-on process is what triggers the failure.
    Quoted from http://thedambook.com/smf/index.php?PHPSESSID=e2542559aab0b513be11ac48f7ec3a49&a ction=printpage;topic=3887.0
    Sorry about the long second link. The usual shortening method didn't work.

  • Can Someone Tell Me How To Update My Video Driver?

    Hey there!
    I want to start out by saying I am in no way "tech-savey" so if you can help me out in any means, a step by step process, or a relaitively simple answer would be GREATLY appreciate! Currently, I am playing a video game on my laptop (T61 Thinkpad) and I am told BY the game that my video drivers are out of date.
    I was told to try and update them at the manufactures website after looking through the site I am at a loss on what to do. If someone can supply me with the link to download the latest driver, or tell me what I am doing wrong I would REALLY appreciate it! Thanks sooooo much !
    My "Type" is 6457-BZ6
    My Product ID is 6457BZ6
    Also my OS is Windows Vista
    Thanks SO much for the help

    Someone could give you better and more exact information but you didn't include the model number of your computer. But I can give you a pretty generic answer. At the top of this webpage you should see Product Support. Click on Laptops and then select which model of Toshiba computer you own, ie Satellite, Tecra, etc. Finally type in the model number of your computer. Select the exact model number and click the red Go button to the right. Click the Downloads tab and look thru the different drivers for this computer. Make sure that the new video driver is newer and has a higher version number than your current video driver. If it does, click the Download button, click the Run button and let it do the installation. Afterwards, reboot the computer so that the latest drivers are fully installed. Try again with that game.

Maybe you are looking for