Need to install ODBC driver 9.2.0.6.5 to client but how?

Greetings.
I have client PC (Not including DataBase engine) and I want install ODBC-driver version 9.2.0.6.5 (I have reasons). PC is normal Win XP 32bit.
I found this driver from Oracle's download pages -> OK
It's *.jar file, so I need to run it via Installer -> NOK
In Client PC I do not have this Oracle Installer, what I can to do?
It's seems that ODBC-driver need installer version 2.3.0.5.0a or later...
I will be very appreciate if someone can help.

Or download the 10g client, its in there and U can run it without having to install 10g...
this is whgat we did but it crashes when we try to create a ODBC DSN in control panel based on the new ODBC driver, this is what I am looking into currently

Similar Messages

  • I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    You only need the ODBC driver on each computer. If you are distributing the SQL Toolkit app as an executable and do not install the whole toolkit on each computer, you'll need the SQL Toolkit support files. This is about a dozen files. You can get the list at http://digital.ni.com/public.nsf/websearch/b814be005f9da9258625658700550c75?OpenDocument.

  • Install ODBC Driver on Windows XP

    Hi all
    I have some problems with the installation of a Oracle ODBC Driver:
    On my maschine, there is Oracle Client (9.2) installed and is working fine.
    Now I need to install the ODBC Driver.
    I have downloaded the driver successfully but I cannot install because I
    do not have this "Oracle Universal Installer" installed ... :-(
    What can I do ???
    Thanks for any comment!
    Best regards
    Frank Uray

    Hi!
    You can download the latest version from:
    http://www.oracle.com/technology/software/products/rdbodbc/index.html
    Exists version including "Oracle Universal Installer".
    You shouldn't have any problem if you are using 9.2 Oracle.

  • How to install ODBC driver minimally

    Oracle9i provides ODBC driver download page. the dirver is small, only 2M after installation. However, it does not work unless Oracle Net Client is installed correctly.
    The question I want to ask is, what components should I install for the Net Client? or is there any straightforward installation program for ODBC driver?
    I just want to make the installed ODBC driver and its dependencies use minimal Hard Disk space.
    Thanks,
    Mike

    Unfortunately, that's as small as it gets if you want to have a supported configuration.
    If you're really stuck, you may want to investigate third-party ODBC drivers. DataDirect has a "thin" ODBC driver they'd be happy to sell you.
    Justin

  • After updating my ipod touch my computer does not detect my ipod in devices on itunes. It says I need to install a driver software for my mobile device. Help.

    After updating my ipod touch, my computer did not detect my ipod in devices on itunes. It says I need to install a driver software for my mobile device. Help pls?

    Maybe this will resolve your problem:
    iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows
    Or you may have to look at the river/server topicsof the following:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows
    Since you were unclear at to the error message.

  • Apple store installed optical drive replacement. It plays CD and DVD but will not let me change a DVD to .mp4 without stalling and or going very very slow.  Can I fix the HL-DT-STDVDRW  GA11NR?

    Apple store installed optical drive replacement. It plays CD and DVD but will not let me change a DVD to .mp4 without stalling and or going very very slow.  Can I fix the HL-DT-STDVDRW  GA11NR?  The Apple store is a two hundred mile one way trip.

    I didn't imply anything; I simply explained the terms of the ToU here because you had not specified what you were trying to do. Most such related questions are about copying protected content and I would not appreciate having my post removed with the obligatory email from Apple because I violated the ToU. In any case, you can find dozens of threads googling (or here) about the newer burners being slow copying content if it is protected. FWIW, if the DVD was produced by a commercial outfit, they may have used some sort of protection or an unusual file format - that problem has been discussed here previously.
    As for your slow burner - since we don't even know what type of Mac/model/year/OS  you have, it is impossible to guess. If it's an iMac, those vertically installed burners are known to be less than perfect; the horizontally installed versions are better, but still not as good as an external. I've used an external burner for years.
    As for the conversion time: the burner should have nothing to do with that; it is your software and your Mac's processor and amount of RAM that matter for conversions and rendering. I have no idea what you are using to burn the DVD. And, as a last consideration: you should always burn your content at a slow speed so you can avoid burn errors and have better results.
    Good luck.

  • My hard drive crashed and i lost all my rippped cd songs from the hard drive. Luckily they are all in icloud but how do i get ripped music from icloud to redownload back to the PC all in one go???

    My hard drive crashed and i lost all my rippped cd songs from the hard drive. Luckily they are all in icloud but how do i get ripped music from icloud to redownload back to the PC all in one go???

    Hi,
    The simplest solution would to restore from your back up - https://discussions.apple.com/docs/DOC-4112
    If you do not have a back, you can select first track on list in song view, from menu > edit > select all. Next ctrl+click and select download from pop up. You may wish to do this in small batches as it will take some time to download.
    Jim

  • How to install ODBC driver

    I am trying to test very simple JDBC connection. I have a database on my local machine and I just want to run some very basic SQL queries. When I am trying to run following code I am getting error saying ODBC driver is not available. Any help is highly appreciate.
    Thanks in advance
    CODE:
    public class TestJDBC
         public static void main(String[] args)
              try{
                   System.out.println("Hello World!");
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   String url = "jdbc:odbc:<localDB_name>";
                   Connection conn = DriverManager.getConnection(url,"scott","tiger");
                   Statement stmt = conn.createStatement();
                   stmt.executeUpdate("create table testHk(testId number(10), testName varchar2(7) )");
              }catch(SQLException se){
                   System.out.println("Some error while getting Connection to database");
                   System.out.println("Exception is ===" + se.getErrorCode());
                   se.printStackTrace();
              }catch(ClassNotFoundException ce ){
                   System.out.println("Class Name is not found");
    ERROR msg is -
    java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driv
    er specified
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6026)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:6183)
    at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(JdbcOdbc.java:2453)
    at sun.jdbc.odbc.JdbcOdbcConnection.initialize(JdbcOdbcConnection.java:315)
    at sun.jdbc.odbc.JdbcOdbcDriver.connect(JdbcOdbcDriver.java:158)
    at java.sql.DriverManager.getConnection(DriverManager.java:512)
    at java.sql.DriverManager.getConnection(DriverManager.java:172)
    at Hk.TestJDBC.main(testJDBC.java:11)

    Absolutely,
    Your URL will be different, and will be along the
    lines of:
    for ORACLE...
    String url = "jdbc:oracle:thin:@127.0.0.1:1521:sid";['thin' refers to a specific driver that allows you to
    not have an oracle instance running on the client
    machine... port 1521 is teh default, check for
    changes... and 'sid' is your instance name]
    for mySQL...
    String url = "jdbc:mysql://127.0.0.1:3306/sid";[you can guess]
    There will be a driver either incuded with your DBMS
    (you don't say which you have) but u need to either
    place it in your classpath (it will be either a zip or
    a jar), or unpack it and place it in your
    application's codebase (if you plan to jar the whole
    app up and deploy it that way), either way you need to
    refer to the driver class using the following method
    in the constructor:
    for ORACLE...
    Class.forName ("oracle.jdbc.driver.OracleDriver");for mySQL...
    Class.forName ("org.gjt.mm.mysql.Driver");You do not need to instantiate this driver, you are
    just telling the context where it is...
    then all you need to do is...
    Connection con = DriverManager.getConnection(url,
    "user", "password");
    Statement s =
    con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
    ResultSet.CONCUR_UPDATABLE);and you are away!
    Totally platform independent and no messing around
    with ODBC toss
    good luckHI,
    these drivers will be loaded automatically when we install the respective softwares ? or we have to install them explicitly??
    --Bhupendra Mahajan

  • DG4ODBC  is available for linux 64bit, but i need to buy ODBC driver??

    Hi guys,
    I need to connect to Microsoft SQL Server from Oracle rdbms 10.2.0.3 on linux_64bit platform and I've read that HSODBC DOES NOT AVAILABLE ON 64BIT PLATFORM.
    So DG4ODBC can run with Oracle Version 10.2.0.3 (patch 5965763 is mandatory) but the Note:561033.1 says to buy a ODBC vendors driver..
    I don't understand, i need to install DG4ODBC for Heterogeneous Connectivity but it works only throught other ODBC vendor driver? so i need to buy ODBC license for my aim.
    There isn't any workaround for it? some opensource driver or method for connect to external SQL server without any cost effort?
    thanks very much!
    Andrea

    Yes, you are right. DG4ODBC offers only the option to connect to the foreign database using an ODBC driver; but there is NO ODBC driver shipped with it.
    There are some ODBC drivers outside (like freetds.org) for free, but there is no guarantee it will work with DG4ODBC as they commonly do not offer the functionality like a commercial ODBC driver from DataDirect or Easysoft does.
    If you do not want to pay for a commerical ODBC driver then think about moving DG4ODBC to the SQL Server or any other 32bit Windows machine as you can then here use the SQL Server ODBC driver shipped with the OS or with the MDAC.
    DG4ODBC is now a gateway and thus independant from the Oracle database (another improvement compared to HSODBC).
    You can then connect from the database on Linux to the gateway on Windows which uses the SQL Server ODBC driver for Windows and connects to the SQL Server.

  • How do we install ODBC driver in lunix?

    I have linux server and i need to install one of the third party software in the unix machine. It is compalining ODBC driver missing. Who can install Oracle ODBC driver in the server? Should i ask UNIX admin to install? What is the direction to get this installed?
    Please let me know... It would be helpful if any one can respond...

    Hi,
    also see this links
    http://wiki.oracle.com/page/ODBC
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32002/pre_install.htm#CHDGJBCG :)

  • Simplest way to install ODBC driver?

    What is the simplest and least invasive way to install Oracle ODBC driver?
    Do I need to install the Oracle client? Seems like there should be an easy way to do this.
    I have an Oracle table I want to share with about five people. The best way I know how is to do it in MS Access through ODBC.

    Yes, you need an Oracle client installed in order to make use of the Oracle ODBC driver.
    The simplest approach would be to download and install the full Oracle client, which includes an ODBC driver (though you may have to do a custom install to select this), on each client machine.
    You could use the Oracle Instant Client, rather than the full Oracle client, which is much, much smaller in size than the full client, but requires more work to get set up. The Instant Client was originally designed for developers to install as part of their own application's installation procedures, so you need to set up some environment variables to get things to work and you don't get some of the GUI's that you would get with the full client.
    Depending on the Oracle version, you may also want to consider writing a small APEX app to expose the data in the table to whoever needs it.
    Justin

  • What do I need to install 2nd drive on old Sawtooth?

    Hope its OK to ask about legacy computers on this board!
    I have a powermac Sawtooth (450 ghz AGP) running OS9.2 - and was recently given some graphics programs that run on os 10.4 (Tiger)
    I know its possible to install Tiger on the computer but would rather install a second internal HD and leave the original drive intact.
    Since the capacity on the current HD is pitiful, was thinking I would also prefer for the second drive to have greater storage capacity (500 GB+) but my research indicates that as it is, this computer does not recognize HD's over something like 160 GB.
    My QUESTION is: what are all the things I would I need to buy to install a bigger-than-160 GB HD on this computer? Except for adding more memory, I never upgraded it, all the expansion slots and bays are available.
    Thanks!

    B Lee wrote:
    Hope its OK to ask about legacy computers on this board!
    Virtually Mandatory!
    And remember, a practical old time doctor starts by feeling his patient's purse!
    You can: add a 120 GB HD; add two 120GB HDs, cloning your present drive to one of the new HDs; substitute 160GB (or larger) HDs for the 120GB HDs (remembering that your Sawtooth will read the first 128 GBs of the HDs;
    Or: add an ACARD 6280 controller card that will format larger (ATA) HDs to read like SCSI drives, but will let your Sawtooth handle larger than 128GB size HDs. The ACARD is a good quality card, popular in G3 days, is compatible with your current HD(s), will expand capacity to as many as 4 of your 500GB HDs, and should be available at a very reasonable price on eBay. I don't know if it would affect an ability to clone back and forth from native to ACARD controller HDs, or how compatible it might be with external HDs or Target Drive Mode.
    Or: you could purchase a 2002 Quicksilver (disclosure - my favourite) that would handle larger the HDs natively and probably do a few other things that later G4s do that Sawtooths (Sawteeth-?) don't.
    Upgrading older Macs is great fun, but remember 'free' is often expensive so keep a firm hold on your wallet.
    Enjoy... jws

  • Installing ODBC Driver for Windows Server 2008 64 bit

    I have a new Windows 2008 server 64 bit in which the Oracle ODBC is missing. We are on Oracle 10.2. It looks like I need to install the developer suite first in order to get tnsnames and sql plus, but I can find only the 32 bit version. Could someone point me in the direction of what exactly I need to install in order to get sql plus working and also to install the Oracle ODBC on this server?
    Thank You

    I need to install the developer suite first in order to get tnsnames and sql plusThat's wrong, you need to install the correct client:
    http://www.oracle.com/technetwork/database/10203vista-087538.html
    http://www.oracle.com/technetwork/database/10204-winx64-vista-win2k8-082253.html
    Note: If you have Windows 2008 R2, you need patchset 10.2.0.5, which is only available from MOS/metalink.

  • Getting MS Access Error Code 1157 when installing ODBC Driver

    I am not an Oracle programmer, so please forgive me if this is a simple question. I am trying to access an Oracle database using MS Access 2000. I'm following the step-by-step instructions that our IT department sent to me, but I did not have the Oracle ODBC Driver installed. I downloaded a driver from OTN, but when I try to set-up Access to use the Oracle Driver, I get a dialog box that says the setup routines could not be loaded because of system code error 1157. What does this mean? Is this an Access or Oracle problem? How can I get Access to connect to Oracle? Thanks for any help.

    I'm guessing that you don't have the Oracle client installed. If this is the case, you probably want to bother the IT folks for the CD (or a pointer to a local copy of the image). You can download the Oracle client off OTN, but it's a very large download.
    If you do have the Oracle client installed, check your PATH environment variable to see whether the %ORACLE_HOME%\bin directory is in your path.
    Justin

  • Installing ODBC Driver

    Hello:
    I'm running Windows XP.
    I just downloaded the ORA10203.exe driver. I ran the file and the files were unzipped into the following directory:
    c:\ORA10203.
    How do I now install the driver? When I look in Data Source in my control panel, I see it listed nowhere.
    Can someone help?
    Thank you.

    The readme text states:
    Part IV: Installation Instructions
    This section assumes the following:
    1. Oracle 10.2.0.0.0 client has already been installed on your system,
    and necessary 10.2.0.3.0 patch has been applied.
    2. Part III has been completed.
    Installation Instructions
    Once the self-extracting archive file ORA10203.EXE has been
    exploded it will create an directory structure as shown below on
    your hard drive.
    The directory structure after unzipping and where the files to be
    copied are shown below:
    1. a. ORA10203\bin\sqora32.dll ---> <ORACLE_HOME>\bin
    b. ORA10203\bin\sqoras32.dll ---> <ORACLE_HOME>\bin
    c. ORA10203\bin\sqresus.dll ---> <ORACLE_HOME>\bin
    2. a. ORA10203\ODBC\html\ODBCRelnotesUS.htm ---> <ORACLE_HOME>\ODBC\html\
    b. ORA10203\ODBC\readme.txt ---> <ORACLE_HOME>\ODBC\html\
    3. ORA10203\ODBC\mesg\oraodbus.msb ---> <ORACLE_HOME>\ODBC\mesg\
    As far as I understand it is saying "copy the files to the Oracle home". Yet this still does not install the driver. The Microsoft Data Sources tool says "use the driver's setup program".
    I don't see one provided, nor does the Universal Installer seem to be applicable here.

Maybe you are looking for

  • Tax details not geting populated

    Hi Folks, I have a problem in populating tax details.can anyone here please let me know where I am going wrong in the code.The last  butone field is caluculation and can be ignored for the time being. REPORT  ZMMEXCISETEST                           .

  • Can I set a reminder for when I arrive in a city?

    Here's the problem...We were driving several hours back home and I figured it would be helpful to set a reminder to perform an errand when we got back to the city. So I asked Siri and she wasn't having any of it. I figured she just was being glitchy.

  • How to activate job log creation when WPxx dies

    Hi all, Allmost daily one of our SAP work processes dies at OS level. This leaves some locks open, which freezes the (productive) system for about 10 minutes. Unfortunately, no OS log is created of this dying WP job. SM21 only tells us that a WP died

  • "outlook dav config a cessé de fonctionner"

    Bonjour, j'ai systématiquement le message "outlook dav config a cessé de fonctionner" lorsque j'essaie d'installer itune sur mon outlook. Que puis je faire? Merci de vos réponses.

  • Guest Network and MAC

    Is there any way to set up a guest wireless network with a on/off schedual on my airport extreme. Is there any parental controls that can be set up as a "per computer" basis (It would just be on one computer connected wirelessly and it is running xp