Oracle 10g OCI Client Certification

we are in process of 10g RAC Certification and Customer Aksed
Would it be correct to assume that the Oracle RAC 10g Certification will include the 10g OCI client certification? I believe this will be necessary for an application to connect to the cluster.
Can any one help to answer this?

as far as I know, clients connect to rac db the same way they did against a single instance

Similar Messages

  • 10g OCI client certification

    we are in process of 10g RAC Certification and Customer Aksed
    Would it be correct to assume that the Oracle RAC 10g Certification will include the 10g OCI client certification? I believe this will be necessary for an application to connect to the cluster.
    Can any one help to answer this? and how we can do 10g OCI client certification?

    I'm not sure what you're asking...
    Assuming you need to have the 10g client installed on the middle tier (if your middle tier is a J2EE application server, those folks will probably want to use Oracle's Type 4 (thin) JDBC drivers, which don't require the 10g client), yes, you can install just the 10g client. Depending on the operating system, there may be a separate client-only download or you may have to download the entire database and choose to do a client-only install.
    Justin

  • Oracle 10g OCI based application talking to an Oracle 9i database

    Hi all,
    Got a question. I have an OCI C++ application that is written using the Oracle 10g OCI includes, etc ... This of course is running on a 10g client. The client OS is actually a Windows x64 system since 10g is the only native OCI client right now for 64 bit Windows systems. So this all works fine. Now, I am communicating with an Oracle 9i database server. Is there anything wrong or invalid about this configuration ? I didn't think that there was but I was asked to confirm this, that is having an Oracle 10g client communicating with an Oracle 9i database. Our application is making very straight forward OCI calls, and we are not using any of the newer OCI calls that were introduced in 10g, just the ones that are available in 9i OCI.
    Thanks in advance,
    Nick

    Thanks for the reply.
    Actually I thought that the OCCI forum was for Object oriented OCI, so while I'm using C++, I'm not using the object oriented side of OCI, just using the normal OCI calls. Guess I should have been a little clearer in my original post.
    But my main question really concerned the version of the client and the version of the database which you answered.
    Thanks,
    Nick

  • SetString/executeBatch fails in Oracle 10g OCI JDBC driver

    Hi,
    I am using Oracle 10g OCI jdbc driver for batch updates.
    Following is the the code that I am using
    import java.sql.*;
    import oracle.jdbc.*;
    import oracle.jdbc.pool.OracleDataSource;
    public class BatchUpdates
    public static void main(String[] args)
    Connection conn = null;
    Statement stmt = null;
    PreparedStatement pstmt = null;
    ResultSet rset = null;
    int i = 0;
    try
    String url = "jdbc:oracle:oci:@kctutf8";
    try {
    String url1 = System.getProperty("JDBC_URL");
    if (url1 != null)
    url = url1;
    } catch (Exception e) {
    OracleDataSource ods = new OracleDataSource();
    ods.setUser("kctuser");
    ods.setPassword("kana");
    ods.setURL(url);
    conn = ods.getConnection ();
    stmt = conn.createStatement();
    try { stmt.execute(
    "create table mytest_table (col1 number, col2 varchar2(20))");
    } catch (Exception e1) {}
    pstmt = conn.prepareStatement("insert into mytest_table values (?, ?)");
    pstmt.setInt(1, 1);
    pstmt.setString(2, "row 1");
    pstmt.addBatch();
    pstmt.setInt(1, 2);
    pstmt.setString(2, "row 2");
    pstmt.addBatch();
    pstmt.setInt(1, 3);
    pstmt.setString(2, "row 3");
    pstmt.addBatch();
    pstmt.setInt(1, 4);
    pstmt.setString(2, "row 4");
    pstmt.addBatch();
    pstmt.setInt(1, 5);
    pstmt.setString(2, "row 5");
    pstmt.addBatch();
    pstmt.executeBatch();
    rset = stmt.executeQuery("select * from mytest_table");
    while (rset.next())
    System.out.println(rset.getInt(1) + ", " + rset.getString(2));
    catch (Exception e)
    e.printStackTrace();
    finally
    if (stmt != null)
    try { stmt.execute("drop table mytest_table"); } catch (Exception e) {}
    try { stmt.close(); } catch (Exception e) {}
    if (pstmt != null)
    try { pstmt.close(); } catch (Exception e) {}
    if (conn != null)
    try { conn.close(); } catch (Exception e) {}
    When I run this class I get the following output
    1, row 1
    2, row 3
    3, row 5
    4, null
    5,
    But It should have been
    1, row 1
    2, row 2
    3, row 3
    4, row 4
    5, row 5
    The same class runs fine if I use Thin driver.
    Can anyone please help me solve this issue.
    Note: This happens only in case we use setString with Varchar2 in the DB. This works fine if I have two number columns
    Thanks,
    Raja.S

    Please post this question to the Java forum. It is located under "Technologies".

  • Cannot install oracle 10g R1 client on redhat as 4

    I've got an oracle 10g r2 XE rdbms installed on a redhat as 4 system.
    I am trying to install the pro*c precompiler on this system because it is not included in the 10g r2 installation. It's not included in the 10g r2 client either. Is oracle planning to drop support for this or what's going on with that?
    I am now trying to install the oracle 10g r1 client for linux since it has the pro*c compiler included (or so I've read).
    When I try to run the installer, it responds with:
    Checking operating system version: must be readhat-2.1, readhat-3, SuSE-9, or UnitedLinux-1.0
    Failed <<<<
    Any ideas as to what is wrong?
    I'm running Red Hat Enterprise Linux AS release 4 (Nahant Update 4)
    Kernel version 2.6.9-42.ELsmp i686
    Werner

    Does the logfile of the installer show more detailled error messages?
    Try starting the installer with the -ignoreSysPrereqs option.
    Cihat

  • How to connect oracle 10g XE client to XEserver on win XP

    Hi ,
    i am using oracle 10g express edition. i installed oracle 10 xe server it is working fine but how can i connect oracle 10g xe client to this server becouse there is no net configuaration nad Migration tools and also net configuation Assistant . can you explain
    Regards,
    Dharmendra

    The computer running XE server does not need a client installed.
    If you are trying to connect from another computer, install the XE client and create file C:\XEClient\NETWORK\ADMIN\TNSNAMES.ORA with the following contents (replace ip_address as appropriate):
    XE =
        (DESCRIPTION =
           (ADDRESS_LIST =
              (ADDRESS = (PROTOCOL = TCP)(HOST = ip_address)(PORT = 1521))
           (CONNECT_DATA =
              (SERVICE_NAME = XE)
    {code}Test with
    {code:java}
    sqlplus SYSTEM/password@XE
    {code}
    Regards,
    Georger
    wrote:user_7000018
    Hi ,
    i am using oracle 10g express edition. i installed oracle 10 xe server it is working fine but how can i connect oracle 10g xe client to this server becouse there is no net configuaration nad Migration tools and also net configuation Assistant . can you explain
    Regards,
    Dharmendra

  • Where can I download the Oracle 10g R2 clients for Windows 7?

    Where can I download the Oracle 10g R2 clients for Windows 7?

    Welcome to the forums !
    Pl identify exact versions of "10gR2" and Windows 7. The only certified combination is 10.2.0.5 on Win 7 Professional or higher. Home version of Windows is not supported. Using uncertifed combinations will result in the software not working as advertised.
    See http://docs.oracle.com/cd/B19306_01/relnotes.102/b14264/toc.htm#CIHCFAGA (see Step 4 - the 10.2.0.5 patch can only be downloaded by paying support customers at https://support.oracle.com)
    HTH
    Srini

  • How to configure oracle 10g with clients

    Hello sir i am a database user.
    I want to install an oracle 10g (Client server architecture)
    As i have a licenced Oracle 10g CD Pack.
    Pls help me how to install Oracle & how to configure its clients.
    As i have a server(running server 2003 ) in it and corresponding clients.
    Thanks
    Edited by: user10439074 on Oct 30, 2008 4:03 AM

    Read the documentation (I have given following links assuming you are running a 32 bit architecture)
    Server installations:
    http://www.oracle.com/pls/db102/to_toc?pathname=install.102%2Fb14316%2Ftoc.htm&remark=portal+%28Books%29
    Client installations:
    http://www.oracle.com/pls/db102/to_toc?pathname=install.102%2Fb14312%2Ftoc.htm&remark=portal+%28Books%29
    You can find the required books (if not using 32 bit architecture) from
    http://www.oracle.com/pls/db102/portal.portal_db?selected=3

  • Oracle 10g full client RPM

    Does anybody know that Oracle has full client RPM for 10g? Or just occi full client. This is very important to our development process because the Oracle 10g client can only be installed on redhat or UnitedLinux. But we need it in Debian
    qicheng

    I don't find information about 10g FULL CLIENT. Just find a guide for installing 10g on debian. That won't help me.
    --xinhuan                                                                                                                                                                                                                                                               

  • Oracle 10G instant client..

    Hi,
    we are upgrading Bw 3.1c to NW04s BI 7. Apart from this we need to upgrade oracle 9i to 10g.As far as oracle 10g client is concerned, Is it mandatory to use the oracle instant client? Otherwise we can still use the old oracle client?
    Please let me if anybody has any idea about it.
    Thank you in advance.
    SS

    Hello SS,
    From NW04S kernel 7.00 onwards oracle instant client is mandatory.Instant Client is a smaller version of the oracle client software which is being shipped with SAP kernels 700 onwards.The basic philosophy that the version of the client software depends on the version of the SAP kernel.The SAP kernel 700 and upwards are all linked against Oracle 10g. Hence the Oracle 10g client software needs to be installed on all 700 kernel based application servers.
    Please refer to snotes: 819829 and 180430.
    Thanks
    Mohan

  • How to uninstall Oracle 10g instant client from Windows XP?

    Thanks.

    http://www.oracle-base.com/articles/misc/ManualOracleUninstall.php
    Nicolas.
    Oops, maybe link not about instant client... sorry.
    Message was edited by:
    N. Gasparotto

  • Oracle 10g R2 client sqlplus is not running

    I have windows XP Pro and i installed client from http://download.oracle.com/otn/nt/oracle10g/10201/10201_database_win32.zip.
    Installation went fine but when i run sqlplus it is giving me error," Oracle SQL*PLUS has encountered a problem and needs to close. We are sorry for the inconvenience." do u want to send error report to Microsoft.
    It looks some problem with distribution, i dont see the checksum next the links.
    Am I doing anything wrong?

    how did you install the client?
    there should be an oracle_home directlry on your drive (often C:\oracle\) and somewhere down the tree you should find an install directory that may contain either a log file or a log subsirectory. check that for messages.

  • Oracle 10g instant client installation

    hi,
    im trying to install the instant client needed on our sparc solaris server and i have a little background on solaris and java (took a few classes in college) and now i'm being asked to install the instantclient to our server.
    according to the instructions on the link:
    http://download.oracle.com/otn/solaris/instantclient/111060/basic-11.1.0.6.0-solaris-sparc64.zip
    however, im not really used to the open source environment and i have already followed up to the step 3, i extracted the files to a to the directory /oracle/app/instantclient and typed the command "export LD_LIBRARY_PATH=/oracle/app/instantclient" and now i have no idea what to do next. i tried running all of the other files in the zip file but i only encounter errors.
    pls help me T_T

    953576 wrote:
    Hi,
    I have an application that uses Oracle 11gr2. For the Oracle client installation, I first install InstantClient and then run the setup again, choose Custom, and choose "Oracle Database Utilities" since the InstantClient doesn't have exp/imp with it.
    My question is, instead of doing 2 steps for installation, how can I just do it once? What corresponding option(s) do I have to select in Custom mode to install InstantClient? Here's a link to a pic for the complete list of items available: http://i.stack.imgur.com/gUT7g.jpg
    Thanks.
    "choose?"
    "Custom"?
    an installation GUI?
    That doesn't sound like Instant client.
    That sounds like the normal fat client.
    What is the name of the file you downloaded?

  • Installation errors with Oracle 10g Express Edition client.

    Hi,
    I want to use the Oracle 10g XE client on my Ubuntu (Lucid) laptop. I am following the installation instructions as mentioned at Installing Database Oracle XE Client. When I run the .sh file for my bash shell, I keep getting this error message:
    root@machine:/usr/lib/oracle/xe/app/oracle/product/10.2.0/client/bin# . ./oracle_env.sh
    /usr/lib/oracle/xe/app/oracle/product/10.2.0/client/bin/nls_lang.sh: 112: [[: not found
    /usr/lib/oracle/xe/app/oracle/product/10.2.0/client/bin/nls_lang.sh: 112: [[: not foundAnd, when I look up nls_lang.sh at around line 112, I see this:
    # Detertmine the LANGUAGE_TERRITORY part of NLS_LANG
    # we derive it from the current locale by inspecting the LC_ALL and
    # the LANG environment variable. Other LC_* environment variables
    # are not inspected.
    if [[ -n "$LC_ALL" ]]; then
      locale=$LC_ALL
    elif [[ -n "$LANG" ]]; then
      locale=$LANG
    else
      locale=
    fiHow do I get the client working ?

    So, I have been searching around to look for a method to enable the client installed on my laptop to connect to the database. Granted that, the server is not installed on my local machine. But, I am simply, unable to find any clues as to how do I specify the database name that the client should connect. The ORACLE_SID parameter needs to hold a database name; but, where are the IP address and port number mentioned for the database ? One site recommended that tnsping be used to check for database existence; whereas, tnsping is not installed. Then, the commonest hint that I keep bumping into - TNSNAMES.ORA file. Since I have only the client installed, I don't even see the network/admin folder (or whatever the path is to the .ora file) under /usr/lib/oracle/xe/app/oracle/product/10.2.0.
    It can't be this hard to connect to an Oracle server with only a itsy-bitsy Oracle installed on my local machine, hmmm ?

  • Problem in oracle 10g(client) to server is oracle 8i

    i want to coneect oracle 10g is client to oracle 8i is server. so i am getting problem.
    how to connect oracle 10g (client) to oracle 8i server.please give me steps.

    so i am getting problem
    Apart from the fact it doesn't work - which error message do you recieve??
    Dim

Maybe you are looking for

  • Warehouse Managment (Two-Step Picking)

    Hi, This is with reference to Two-Step picking procedure, which is not getting activated. Though we have done all customization required for TR and Delivery’s as well, as referred in the documentation provided by the SAP. The settings done are as fol

  • HT201209 How do you determine the funds left on an itunes card?

    How do you determine the funds left on an itunes card?

  • Calculated column shows all zeros in cross tab discoverer report

    Hi I have a calculated column in a cross tab report which shows all zeros, but when i duplicate the report as 'table' the calculated colun is getting populated. i did not understand why it is doing like that, are there any special privileges or any s

  • Problème vidéo

    Bonjour ! Quand je filme avec l'app appareil photo, je n'ai pas de son, même chose pour FaceTime.  Pouvez-vous me guider pour savoir comment régler mon problème.  Je vous remercie !

  • I how problems with delete/ fix alias

    I how problems with delete/fix alias. Somehow, I am trying to delete or fix alias by clicking the icon it show a pop-up saying to click "delete alias" or "fix alias." When I click "delete alias", it wouldn't let me. When I click "fix alias" I could n