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

Similar Messages

  • 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

  • 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

  • How do I install ipad2 driver on my computer

    How do I install ipad2 driver on my computer?

    There is no driver to install.  What you need to have on your computer to set up and maintain your iPad 2 is the most recent version of iTunes, which is a free download from Apple.   From this site, click on iTunes and download it......

  • How do I install a driver on my macbook pro

    How do I install a driver on my macbook pro

    ECastrillo,
    it depends upon the driver. Which driver are you trying to install?

  • How can i install jdbc driver

    Hi
    i install websphere 5 and try to connect to my sql server but cannot find jdbc driver class path and can not find any jdbc driver
    pls tell me how can i install jdbc driver in my websphere
    with regards

    You may get a better response posting this question in a WebSphere specific forum. Maybe this will help, the following link shows the command you need to execute to install a JDBC driver in websphere 5.0.
    http://publib.boulder.ibm.com/infocenter/wasinfo/index.jsp?tab=search&searchWord=mysql+driver&maxHits=50

  • Can I set up a new Mac Pro late 2013 using a Wacom Cintique 13HD tablet as the default monitor? How would I install the driver software for the tablet?

    Can I set up a new Mac Pro late 2013 using a Wacom Cintique 13HD tablet as the default monitor? How would I install the driver software for the tablet?

    The wacom site will have the drivers for you.
    http://us.wacom.com/en/support/drivers

  • HT1338 How do I install a driver for the speakers I have connected to the headphone jack?

    How do you install a driver for speakers I have connected to the headphone jack?

    You don't need drivers for speakers in a headphone jack.
    What is the problem?

  • How do you install a driver onto a current system from a live cd?

    I just installed Arch on my laptop, but it seems that it doesn't install the Ethernet drivers and they don't appear to be on the live CD.  How might I install the drivers?
    Thanks!

    Yes wrote:How do you install a driver onto a current system from a live cd?
    Yes wrote:
    I just installed Arch on my laptop, but it seems that it doesn't install the Ethernet drivers and they don't appear to be on the live CD.  How might I install the drivers?
    Thanks!
    your post title and the message within seem to contradict themselves.
    More information from you might be helpful as in  what packages did you install during the installation process? Did you have network connection during the install? Are there any errors that you get when booting.
    Last edited by Inxsible (2010-06-16 23:50:34)

  • HT204382 How do I install Flash drive onto my mac

    How do I install flash drive onto my mac

    Not at all sure what you are wanting to do - what type of Mac? Which OS version? Are you physically trying to install another drive?
    Or are you talking about the Mac not recognizing flash drive that you've plugged in?

  • 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

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

  • 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

  • How to configure sqlserver odbc driver at unixODBC-2.2.14?

    Dear all,
    Please guide me.I have already installed unixODBC-2.2.14,but sqlserver odbc driver compitable with unixODBC-2.3.0,How i can configure with unixODBC-2.2.14?
    Thanks in advance,
    Regards
    Dharma

    Dear all,
    I got below error when i connect to sql server.
    [oradev@testebs bin]$ isql -v dblink4sqlserver
    [S1T00][unixODBC][Microsoft][SQL Server Native Client 11.0]Login timeout expired
    [08001][unixODBC][Microsoft][SQL Server Native Client 11.0]A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online.
    [08001][unixODBC][Microsoft][SQL Server Native Client 11.0]TCP Provider: Error code 0x6E
    [ISQL]ERROR: Could not SQLConnect
    Please guide me to solve above error
    Regards
    Dharmal

Maybe you are looking for