Which oracle client do I Need?

I need to connect to vision instance on a remote server using my machine. I came to know that I need to have oracle client installed on my machine.
Can someone clarify which oracle client do I need? I am running on windows- XP on NT Server. Version of Vision instance is 11.5.10.2.
I appreciate for your help. URL Link should be great.
This is what I download and unzip to C:\Oracle\instantclient_10_2.
instantclient-basic-win32-10.2.0.3-20061115.zip
Is it the correct one?
Thanks.

Your setting
-Doracle.net.tns_admin=/usr/local/oracle/oas03/network/admin
is ok if this directory contains the correct tnsnames.ora file.
I have done some poking around, and I suspect that you use an old JDBC driver.
I have written a sample Java program that tests a connection with java.sql.DataSource using JDBC thin and tnsnames.ora, and it works fine with Oracle 10.2.0.3 but fails with Oracle 10.1.0.5 with exactly the error message you get.
The property oracle.net.tns_admin exists only since Oracle 10g R2 (see Metalink note 333686.1).
With 10.2.0.3 I was not able to reproduce your error message, when I set a wrong oracle.net.tns_admin I get "Io exception: could not resolve the connect identifier", and when I omit the property altogether, I get "Io exception: Unknown host specified".
Please double check if Vision uses the JDBC driver you think it does!
Yours,
Laurenz Albe
PS: maybe the test program is useful for somebody. I will post it:
* Test a DataSource connection with tnsnames.ora
* Usage:
* java -classpath .:/oracle/dir/ojdbc14.jar -Doracle.net.tns_admin=/tnsnames/dir tnsname user password
public class DataSourceTest {
public static void main(String[] args) throws java.sql.SQLException {
if (3 != args.length) {
System.err.println("Usage: java DataSourceTest <TNS-Name> <user> <password>");
System.exit(1);
// enable the following for trace output
// need to use ojdbc14_g.jar for this
/* java.util.logging.Logger logger = java.util.logging.Logger.getLogger("oracle.jdbc.driver");
logger.setLevel(java.util.logging.Level.FINEST);
java.util.logging.Handler handler = new java.util.logging.ConsoleHandler();
handler.setLevel(java.util.logging.Level.FINEST);
logger.addHandler(handler);
oracle.jdbc.driver.OracleLog.setTrace(true); */
oracle.jdbc.pool.OracleDataSource ods = new oracle.jdbc.pool.OracleDataSource();
ods.setURL("jdbc:oracle:thin:@" + args[0]);
java.sql.Connection conn = ods.getConnection(args[1], args[2]);
java.sql.ResultSet rs = conn.createStatement().executeQuery("SELECT user FROM DUAL");
rs.next();
System.out.println("Successfully connected as user " + rs.getString(1));
conn.close();
}

Similar Messages

  • Which Oracle client to use? with CRS2008 on Windows 2008 R2 64bit

    Hi,
    We are setting up a standalone Crystal Reports 2008 Server on Windows 2008 R2 64bit. This server will serve some reports that will pull data from an Oracle 11g DB. Several Oracle 10g/11g, (32bit or 64bit) DB client has been tried, but CRS cannot connect to the oracle DB using any of them. Which oracle client is known to be working well on this setup?
    CRS 2008 <> Windows 2008 R2 64 bit <> Xeon E5600 series machine    
    Thanks,
    Steve

    Hello,
    CRS2008 v1 supports Oracle 9.2, 10g R1, 10G R2 and 11g R1.
    The client to use on those version are the same as the server meaning if you have a 11g R1 server then you can use an Oracle Net Client 11G R1. But you can use also a JDBC, ODBC, OLEDB Oracle 11G R1.
    If you have a CRS2008 v0, then Oracle 11G is not supported. Only 9.2, 10g R1 and 10G R2.
    I hope this will help you
    Regards,
    Philippe

  • Which oracle client for aix 6 xi31 sp3?

    I need oracle client 10.2 for a installation of xi31 sp3 on aix 6 with an oracle 11g db in order for ldap to work properly.
    My apologies for my lack of DB (oracle) experience,  however, can someone please tell me which file I need for this and the associated link to download it?

    Hi,
       Please explain in more details what do you mean "which files"?
       If you mean getting the physical files, then :
          To download BOE XI 3.1 with SP3, you need to log onto the SAP Support Portal (aka: Service Market Place) - http://service.sap.com/
          The Oracle D/B and the Oracle client will need to come from Oracle website. You will need to check with Oracle to see how you can get your hands on the files.
          As for AIX 6.1, I assumed that should already been setup since you quoted that in your last note.
    Ken

  • Which oracle client works with both Oracle 11.2.0.2 and BizTalk 2006 R2

    Hi there
    My Oracle11.2.0.2 is installed on linux server. My Biztalk2006R2 is installed on Windows Server 2003 R2 x64. I have already installed BizTalk Adapter for Oracle on the Biztalk server and now require to install Oracle Client to make Biztalk able to retrieve data from Oracle11.2.0.2 using the oracle client.
    From the following link,
    http://msdn.microsoft.com/en-us/library/aa559822%28v=BTS.20%29.aspx
    I came to know that the only oracle clients compatible with Biztalk adapter for oracle are as below:
    1) Oracle client 8i
    2) oracle client 9i
    3) oracle client 10i
    Now I need to install an oracle client on biztalk server in order to make biztalk talk to oracle and retrieve data from it.
    Question1: which of the above clients should i install on biztalk server that is compatible with both Oracle11.2.0.2 as well as Biztalk server 2006 R2?
    Question2: How to install and configure this client to make it work correctly?
    Please help.. thanks.
    Edited by: manibest on 19-Dec-2012 03:27
    Edited by: manibest on 19-Dec-2012 03:27

    The Biztalk Adapter interface with Oracle software has information, requirements per referenced document that does not make sense.
    E.g. "10i" does not exist and the requirement "Oracle ODBC driver 9.2.0.5.4" means that only 9.2 Client can be used. (Mixing parts from one Database Client product version with another version is not allowed/supported/certified.)
    Btw, does that machine happen to have Itanium hardware? (probably no, since you stated x64)
    For Oracle's OS requirements, 2003 was certified with/from 9.2.0.3 (and likely also terminal patch set version 9.2.0.8). Not sure about Server 2003 R2, 32 or 64-bit. I'm pretty sure 10.2 was certified on 2003 R2, but the note likely refers to 10.1 versions (before it was known it would be labeled 10g, g for grid replacing the i ).
    This FAQ may have some more information: http://www.oracle.com/technetwork/database/windows/faq-100614.html
    For Oracle client - server interoperability and certification, there's a support matrix on MOS. See doc id 207303.1.
    It seems 9.2 is supported on the wire to operate with 11.2 server, but Client with at least patch set 9.2.0.4 is required.
    So, I guess best bet is to find updated requirements.
    If you manage to get hold of 9.2.0.5, after verifying that 2003 R2 is ok, then it looks like the puzzle could be put together for a complete picture.
    For ease of install, take a look at the Instant Client. (However, there's no 9.2 IC, that type of client install came later)
    http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html
    Edit;
    some corrections, specially about 9.2 version
    Edited by: orafad on Dec 19, 2012 10:58 PM

  • Which oracle product will i need?

    i have a website, but it's not yet fully complete. it will be similar to craigslist.org and will allow users to post items for sale, but i need to know how i can:
    - manage the posts from spammers
    - have some kind of system that automatically deletes them after a few months
    - send a confirmation to a person's email when they post something on the site
    would using php solve these problems? which oracle problem is tailored to these needs. let me know! and thanks so much for taking time to read this thread.

    Well this question is wide open and there is not a product to perform this task automatically. You could use php if you feel comfortable programming with it. The kind of products you require depend on the amount of budget you are willing to spend to set it up. But don't expect any product to implement a magical solution for this problem.
    ~ Madrid
    http://hrivera99.blogspot.com/

  • Which oracle 10g to be needed

    HI,
    I need to install oracle 10g software on linux server which is running on mainframe hardware
    Here is the detials
    [oracle@rhel5eis oracle10g]$ uname -a
    Linux rhel5eis.clayton.csc.com 2.6.18-92.el5 #1 SMP Tue Apr 29 13:16:58 EDT 2008 s390x s390x s390x GNU/Linux
    Please suggest me which oracle 10g need to be downloaded form oracle site.
    RR

    Original Poster: Please close this thread as answered as you have opened a different thread related to this.... which is fair enough as you have identified a more specific problem:
    see: Need Oracle 10gR2 on RHEL 5 on zLinux (s390x) software

  • Which Oracle Client to install with BO XI4

    Hello,
    To install BO on Oracle , we should have the Oracle DB installed with the client.
    But  Which option should i choose from instant client, administrator,runtime or Custom.
    I already installed the Instant client and BO XI 4 SP2 Patch 8, if another client has to be insatlled, can i do it after te BO insatalltion or should i start from the begining?
    Regards,
    Hassan

    Hi,
    i always used the runtime installer. In XI 3.1 the instant client wasnt sufficient enough. Did you used the instant client also for the connection to the CMS and Audit DB oder did you used the shipped DB?
    Maybe they changed it in BI4 and the instant client is enough. But to be 100% safe i would use the runtime.
    Regards
    -Seb.

  • Sqlplus is not working in oracle client machine.

    In one of the application server on which Oracle client is installed, While login thru unix shell script im getting below error.
    "Error 6 initializing SQL*Plus
    Message file sp1<lang>.msb not found
    SP2-0750: You may need to set ORACLE_HOME to your Oracle software directory "
    /u/testuser>cat .profile
    # Copyright (c) 2001 by Sun Microsystems, Inc.
    # All rights reserved.
    # ident "@(#)local.profile 1.10 01/06/23 SMI"
    stty istrip
    PATH=/usr/bin:/usr/ucb:/etc:.
    export PATH
    stty erase '^?'
    PS1='$PWD>'
    export LD_LIBRARY_PATH=/oracle_home/x86/product/10.2.0/lib
    export ORACLE_HOME=/oracle_home/x86/product/10.2.0
    PATH=$PATH:/usr/bin:/usr/ucb:/etc:.:.:/oracle_home/x86/product/10.2.0/bin
    export PATH
    export TNS_ADMIN=/u/testuser
    CLASSPATH=.:/oracle_home/x86/product/10.2.0/jdbc/lib/classes12.jar
    export CLASSPATH
    alpha=/mydir/var/alpha/proj/logs//u/testuser>
    Thanks in advance.

    >
    export LD_LIBRARY_PATH=/oracle_home/x86/product/10.2.0/lib
    export ORACLE_HOME=/oracle_home/x86/product/10.2.0Why don't you:
    export ORACLE_HOME=/whatever
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    ?

  • Is Oracle Client software must in Sql Server 2005 Box to connect ORACLE

    We need to connect ORACLE from SqlServer 2005
    1. We would like to know is Oracle Client Software MUST needed to be installed in SqlServer 2005 to connect ORACLE.
    2. Do we have any other means?
    3. Will Oracle OLE DB Provider for Oracle help us in establishing Linked Server to ORACLE

    Probably late in the day for this but
    The workbench cannot handle SS2K5 directly at the moment. However as long as no new SS2K5 functionality has been used with a few tweaks this can be achieved.
    1. Firstly use the SS2K offline capture scripts to build the directories for the database(s) you want to capture.
    2 Secondly edit
    (a) SS2K_SYSLOGINS.dat and take out long SS2K5 user records
    (b) SS2K_SYSINDEXES.dat change FIRST ( forth column) to a value (say hex 1).
    (c) SS2K_SYSUSERS.dat change ROLES (sixth column) to a value (say hex 1).
    This should now load into the workbench. If it does not check the error.log file in <OMWB HOME>\log.

  • Run TKPROF from oracle client machine

    Hello,
    I have install on my PC (windows xp sp2), Oracle Client, and I need TKPROF to speed up some query; Can I install TKPROF on my PC or it is necessary to run TKPROF from the server? What rights should I ask on my DBA?
    Thank you!
    XaM

    Thanks for your answer Graham,
    but i want to run
    something like this (from oracle documentations)
    tkprof filename1 filename2 [waits=yes|no] [sort=option] [print=n]
    [aggregate=yes|no] [insert=filename3] [sys=yes|no] [table=schema.table]
    [explain=user/password] [record=filename4] [width=n]
    Can i do that only with Oracle Client install? tkprof.exe isn't on my machine :( .
    XaM

  • How to find version and arch of Oracle client installed

    Hi all
    I have sles 10 sp2 x86_64 on which oracle client 10.2 is installed. this installation was not done by me!
    so i dont know what version/architecture (32/64 bit) mode of the oracle client is installed on the client.
    from sqlplus -V i get only the version which is installed and not whether it is 32 or 64 bit. how can i find that out.
    sqlplus -V
    SQL*Plus: Release 10.2.0.1.0 - Production
    with a bit of googling i found only the below link which says 10g client 32-bit cannot be installed on a 64 bit system.
    i read this Installing 32-bit RDBMS Client software on x86_64 Linux. [ID 1075717.1]
    Installing 32-bit RDBMS Client software on x86_64 Linux.
    The only release of 32-bit RDBMS Client software that will properly install on an x86_64 Linux OS system is 11gR2 (aka 11.2.0.x)
        * 9iR2 (aka 9.2.0.x) 32-bit RDBMS Client software will NOT install on any x86_64 Linux OS system.
        * 10gR1 (aka 10.1.0.x) 32-bit RDBMS Client software will NOT install on any x86_64 Linux OS system.
        * 10gR2 (aka 10.2.0.x) 32-bit RDBMS Client software will NOT install on any x86_64 Linux OS system.
        * 11gR1 (aka 11.1.0.x) 32-bit RDBMS Client software will NOT install on any x86_64 Linux OS system.
    The answer to "why", is that the 11gR2 Client software is the first version that includes syntax so that a 32-bit object is linked.can someone please throw more light on this?

    If you have "64bit" string in V$VERSION it means Oracle 64bit is running.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Release 10.2.0.4.0 - 64bit Production
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - ProductionIf you have no "64bit" string in V$VERSION it means Oracle 32bit is running.

  • Find Oracle client version

    hi guys,
    How can you find which Oracle client version does SAP 4.6D is using to connect with Oracle.
    is there any file or Parameter setting available for this.
    Thanks.
    Chandra

    Hello,
    I'm afraid that the answer given by Samrat Dangeti  is incorrect.
    V$VERSION tells you the version of the RDBMS ( Oracle Database ) not the version of the client used by SAP.
    Please, check the following thread on the Oracle Forum where this is being clarified.
    How do I check the oracle client version?
    Message was edited by:
            Fidel Vales

  • Oracle client version on application servers

    Hi All,
    Recently we upgraded Oracle version from 9.2.0.6 to 9.2.0.8 on databa server and oracle client on application & CI server.
    But i would like to know which Oracle client version am i running currently on the application server.
    Thanks
    Regards
    Sachin

    Hi Stefan,
    With the command it displayed as follows:
    #strings libclntst9.a |grep "XML Schema Processor version"
    Oracle XML Schema Processor version 9.2.0.8.0 Production
    Thanks
    Regards
    Sachin

  • What edition of Oracle DB do I need for Map Viewer 12c?

    Hi All,
    What edition of Oracle DB do I need for Map Viewer 12c?
    Thanks,

    What version of Oracle client do I need for a machine with Windows 8?
    Windows 8 doesn't require ANY version of Oracle client!
    Most installations of Windows 8 never install Oracle client and they have never had any problem except the large set of problems that come included with the OS itself (bugs).
    So you clearly need to explain what PROBLEM you are trying to solve.
    Then we can help you find the best way to solve it. For example you could download and use the free Oracle Sql Developer and just use JDBC to connect to your databases. Then you don't need an Oracle client at all.

  • Does Admin server need Oracle Client

    I have a setup where the admin server resides on a different server than the managed server. To setup a Data Source/connection pool does the admin server need to have the Oracle client setup for the data source to work which is targeted ONLY to the managed server.
    Thanks
    John

    John Essert wrote:
    I have a setup where the admin server resides on a different server than the managed server. To setup a Data Source/connection pool does the admin server need to have the Oracle client setup for the data source to work which is targeted ONLY to the managed server.
    Thanks
    JohnHi John, no, and we recoomend highly that you use the oracle driver
    in the thin mode, which needs no Oracle client installation at all.
    Joe

Maybe you are looking for