OCI drivers on Linux

Hello, I am running weblogic and using Oracle's thin drivers. I
would like to reconfigure and use the OCI drivers instead. How
exactly do I do this?
-- thanks
null

ORACLE_HOME=/opt/instantclient_10_2
export ORACLE_HOMEYou don't set ORACLE_HOME with Instant Client.
PATH=$PATH:$LD_LIBRARY_PATH
export PATHThis is unnecessary.
CLASSPATH=/opt/instantclient_10_2:/opt/instantclient_10_2/ojdbc.jar
export CLASSPATHThis is wrong.
It should be:
CLASSPATH=/opt/instantclient_10_2/ojdbc14.jar:<whatever else you need there>
Java.library.path=/opt/instantclient_10_2
export Java.library.pathThis is useless; java.library.path is not an environment variable.
java.lang.UnsatisfiedLinkError: no ocijdbc10 in java.library.pathThe case is pretty clear. You want to use the OCI driver (your URL starts with "jdbc:oracle:oci:"), so the Java Virtual Machine is looking for libocijdbc10.so in the Java library path but cannot find it.
What is also clear is that the program does not use the CLASSPATH environment variable you set, because then it would never have found the Oracle Driver.
So it seems that your program is ignoring the environment you set (which would explain why it also ignores LD_LIBRARY_PATH which you set correctly).
You must have the environment variables set and exported in the shell that starts the "java" executable.
Also, check that there is no other ojdbc14.jar on this machine (use "find").
To help you debug your problem, let me explain how Sun Java sets Java library path on Linux:
- If you start java with "java -Djava.library.path=/some/dir:/other/dir ...", the Java library path is set to exactly that value.
- If you do not specify -Djava.library.path, the Java library path is taken from the environment variable LD_LIBRARY_PATH.
- Directories listed in /etc/ld.so.conf have no influence on the Java library path (which gave me quite a headache in the beginning).
Do you really need the OCI Driver? If you can do with the Thin Driver (i.e., use an URL that starts with "jdbc:oracle:thin:") you don't need any shared libraries at all.
Yours,
Laurenz Albe

Similar Messages

  • Unable to connect to Oracle using OCI Drivers on Linux

    Hi Everyone!
    I am facing a peculiar issue while using Instant Client on Linux ( 64Bit ) running on Red Hat 4.1.
    I have downloaded the instant client version 10.2.0.3(.zip) .so files from the below URL
    http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/linuxx86_64soft.html
    UPloaded all the files to a directory under /opt and changed the .bash_profile file, the latest content looks like
    ORACLE_HOME=/opt/instantclient_10_2
    export ORACLE_HOME
    PATH=$PATH:$ORACLE_HOME
    export PATH
    TNS_ADMIN=/opt/instantclient_10_2
    export TNS_ADMIN
    LD_LIBRARY_PATH=/opt/instantclient_10_2
    export LD_LIBRARY_PATH
    PATH=$PATH:$LD_LIBRARY_PATH
    export PATH
    CLASSPATH=/opt/instantclient_10_2:/opt/instantclient_10_2/ojdbc.jar
    export CLASSPATH
    Java.library.path=/opt/instantclient_10_2
    export Java.library.path
    As i have downloaded the Sqlplus utility as well, i am able to connect to the Oracle FARM via sqlplus.
    On the other hand, i am unable to connect to the same database via the application. It constantly gives me the following exception,
    java.lang.UnsatisfiedLinkError: no ocijdbc10 in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
    at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    at java.lang.System.loadLibrary(System.java:1030)
    at oracle.jdbc.driver.T2CConnection$1.run(T2CConnection.java:3138)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.jdbc.driver.T2CConnection.loadNativeLibrary(T2CConnection.java:3134)
    at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:220)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:438)
    at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:131)
    at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:77)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:752)
    at oracle.jdbc.pool.OracleDataSource.getPhysicalConnection(OracleDataSource.java:296)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:220)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:164)
    at com.sun.gjc.spi.DSManagedConnectionFactory.createManagedConnection(DSManagedConnectionFactory.java:105)
    at com.sun.enterprise.resource.LocalTxConnectorAllocator.createResource(LocalTxConnectorAllocator.java:68)
    at com.sun.enterprise.resource.AbstractResourcePool.createSingleResource(AbstractResourcePool.java:891)
    at com.sun.enterprise.resource.AbstractResourcePool.createResourceAndAddToPool(AbstractResourcePool.java:1752)
    at com.sun.enterprise.resource.AbstractResourcePool.createResources(AbstractResourcePool.java:917)
    at com.sun.enterprise.resource.AbstractResourcePool.initPool(AbstractResourcePool.java:225)
    at com.sun.enterprise.resource.AbstractResourcePool.internalGetResource(AbstractResourcePool.java:516)
    at com.sun.enterprise.resource.AbstractResourcePool.getResource(AbstractResourcePool.java:443)
    at com.sun.enterprise.resource.PoolManagerImpl.getResourceFromPool(PoolManagerImpl.java:248)
    at com.sun.enterprise.resource.PoolManagerImpl.getResource(PoolManagerImpl.java:176)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.internalGetConnection(ConnectionManagerImpl.java:327)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:235)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:165)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:158)
    at com.sun.gjc.spi.base.DataSource.getConnection(DataSource.java:108)
    at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:113)
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:79)
    at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:922)
    at org.springframework.jdbc.core.JdbcTemplate.call(JdbcTemplate.java:984)
    at org.springframework.jdbc.object.StoredProcedure.execute(StoredProcedure.java:117)
    at com.gecf.uk.pca.dcs.util.SystemParametersDAO$SysParamsStoredProcedure.execute(SystemParametersDAO.java:150)
    at com.gecf.uk.pca.dcs.util.SystemParametersDAO.getSystemParametersList(SystemParametersDAO.java:67)
    at com.gecf.uk.pca.dcs.util.SystemParametersDAO.getSystemParametersMap(SystemParametersDAO.java:94)
    at com.gecf.uk.pca.dcs.util.SystemParameters.loadParameters(SystemParameters.java:44)
    at com.gecf.uk.pca.dcs.util.SystemParameters.<init>(SystemParameters.java:33)
    at com.gecf.uk.pca.dcs.util.SystemParameters.getInstance(SystemParameters.java:72)
    at org.apache.jsp.common.secure.mypayment_jsp._jspService(mypayment_jsp.java from :86)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:93)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:470)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:364)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    at com.gecf.uk.pca.dcs.web.util.SessionFilter.doFilter(SessionFilter.java:97)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:288)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
    at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
    |#]
    I have used the classes12.jar and ojdbc.jar which came with the download and nothing seems to work. A bit surprising when sqlplus works and not the application. I suspect there could be an issue with the driver class. I have been struggling to figure this out for days now...
    Can anyone please share their thoughts if something similar was observed earlier please.
    Any quick help will highly be appreciated.

    ORACLE_HOME=/opt/instantclient_10_2
    export ORACLE_HOMEYou don't set ORACLE_HOME with Instant Client.
    PATH=$PATH:$LD_LIBRARY_PATH
    export PATHThis is unnecessary.
    CLASSPATH=/opt/instantclient_10_2:/opt/instantclient_10_2/ojdbc.jar
    export CLASSPATHThis is wrong.
    It should be:
    CLASSPATH=/opt/instantclient_10_2/ojdbc14.jar:<whatever else you need there>
    Java.library.path=/opt/instantclient_10_2
    export Java.library.pathThis is useless; java.library.path is not an environment variable.
    java.lang.UnsatisfiedLinkError: no ocijdbc10 in java.library.pathThe case is pretty clear. You want to use the OCI driver (your URL starts with "jdbc:oracle:oci:"), so the Java Virtual Machine is looking for libocijdbc10.so in the Java library path but cannot find it.
    What is also clear is that the program does not use the CLASSPATH environment variable you set, because then it would never have found the Oracle Driver.
    So it seems that your program is ignoring the environment you set (which would explain why it also ignores LD_LIBRARY_PATH which you set correctly).
    You must have the environment variables set and exported in the shell that starts the "java" executable.
    Also, check that there is no other ojdbc14.jar on this machine (use "find").
    To help you debug your problem, let me explain how Sun Java sets Java library path on Linux:
    - If you start java with "java -Djava.library.path=/some/dir:/other/dir ...", the Java library path is set to exactly that value.
    - If you do not specify -Djava.library.path, the Java library path is taken from the environment variable LD_LIBRARY_PATH.
    - Directories listed in /etc/ld.so.conf have no influence on the Java library path (which gave me quite a headache in the beginning).
    Do you really need the OCI Driver? If you can do with the Thin Driver (i.e., use an URL that starts with "jdbc:oracle:thin:") you don't need any shared libraries at all.
    Yours,
    Laurenz Albe

  • Linux OCI drivers for WL6.1

    It appears that linux and oracle 9.0.1 are supported through weblogic 6.1 oci drivers
    (according to the platform support page) but I cannot find the proper lib path
    (i.e. WL_HOME/lib/linux/i386/ocixxx) to include. I have wl service pack 2. How
    do I obtain these so files?

    I know. But there is no such directory.
    "Mohan Guttula" <[email protected]> wrote:
    >
    Hello Steve,
    '.so' files can be found in 'WL_HOME/bin/oci901_8'.
    Thanks,
    Mohan Guttula
    Developer Relations Engineer
    BEA Support
    "Steve" <[email protected]> wrote:
    It appears that linux and oracle 9.0.1 are supported through weblogic
    6.1 oci drivers
    (according to the platform support page) but I cannot find the proper
    lib path
    (i.e. WL_HOME/lib/linux/i386/ocixxx) to include. I have wl servicepack
    2. How
    do I obtain these so files?

  • No JDBC drivers for Linux??

    On the Oracle Tech Net site, it seems I can only download
    JDBC drivers for NT or for Solaris... no linux...
    Where can I get Oracle JDBC drivers for 8.0.5 for Linux?
    Thanks!
    Greg
    null

    The thin driver will work from either download (classes111.zip)
    since it is pure java. There is no OCI driver for Linux that I
    know of.
    null

  • JDBC Drivers for Linux

    How come Oracle's web site only has downloads for NT and Solaris. Where do I get the latest JDBC driver for Linux?

    You should be able to use clases111.zip from AIX or NT with your
    Linux client, just copy the file, and add it to your CLASSPATH.
    I'm using classes111.zip from AIX (8.1.5) on NT and Win95
    clients.
    This will work for the thin client, the oci8 needs SQL*Net
    (and some more support libs.) installed to work
    Hilsen Jan
    Greg Patrick (guest) wrote:
    : Well that's no good! I don't have the database client
    : for Linux. Our 8.0.5 DB is on AIX. We have Windows NT
    : 8.0.5 client CD's. I shouldn't need an entire 8.0.5
    : Linux client installation just to use JDBC, should I?
    : JDBC drivers are available for download for NT and Solaris,
    : why not Linux?
    : John Salvo (guest) wrote:
    : : They are included with the 8 and 8i installations.
    : : Greg Patrick (guest) wrote:
    : : : I can't find any JDBC drivers for Linux on the Oracle
    : Technet
    : : : site... It seems very strange that Oracle would have an
    : : : 8i database for Linux but not have JDBC drivers. Is this
    : true?
    : : : All I want is for a java program on a Linux machine to be
    : : : able to use the OCI drivers to talk to the database on
    : another
    : : : machine. Even JDBC thin drivers would be better than
    : nothing.
    : : : Where are they?
    : : : Thanks,
    : : : Greg Patrick
    : : : http://www.abe.com
    null

  • Installing 8.1.6 OCI drivers with 8.1.5 RDBMS

    Hi,
    I developpe an application in java 1.2.2 which have to connect to an
    Oracle 8.1.5 Database.
    Or 8.1.5 OCI or thin Driver don't support java 1.2.x so I try to use
    8.1.6 OCI with 8.1.5 Database as it is said in JDBC FAQ :
    "JDBC 8.1.6 drivers can talk to RDBMS 8.1.6, 8.1.6sdk, 8.1.5, 8.0.6,
    8.0.5, 8.0.4 and 7.3.4."
    "8.1.6 OCI and THIN Driver - JDK 1.1.x and JDK 1.2.x"
    I would prefer to use OCI Driver due to performance so I would like to
    know how can I install 8.1.6 OCI Driver? Should I install a 8.1.6 Client
    to connect to an 8.1.5 Database?
    Thanks,

    all jdbc oci drivers require the matching client install on the same platform.
    (i.e. The 817 JDBC oci driver requires the RDBMS 817 client install, etc.)

  • Steps to Connect remote Oracle Server using OCi C in Linux

    Hi !
    I am trying to connect oracle server through my application using OCI C in linux, it works fine in my oracle server machine.
    I want to connect oracle server through my C application from Oracle Client Machine
    can anyone help me in this issue ?
    regards
    Balaji.C

    Sounds like you did not specify your database name. Or you database name is hard-coded.
    Can you show us the code?
    Is your TNSNAMES.ORA set up correctly?
    Also, you did not specify any error messages or anything. Are you checking the result codes after any functions?

  • I can access a function in a package using OCI drivers but not PDO drivers

    Hello all, i am a newbie to Oracle and its drivers for PHP. I would like to use PDO, and I have my database activity in packages, which have procedures and functions. My package has overloaded functions and that has been giving me a tough time with these drivers. So one signature of my function get_data contains a four arguments and all four are numbers, while another signature of get_data has the first two as numbers and the next two as varchar2. So when I try to access this function which is part of a package, I am able to retrieve data, and the driver I am using is OCI8, but when I try to do the same with PDO, it does not work. It gives me this error,
    *General error: 6553 OCIStmtExecute: ORA-06553: PLS-307: too many declarations of 'GET_DATA' match this call  (/var/www/php-5.3.3/ext/pdo_oci/oci_statement.c:146)' in /var/www/pdo_check.php:251 Stack trace: #0 /var/www/pdo_check.php(251): PDOStatement->execute() #1 /var/www/pdo_check.php(345): dbPDO->execPackage2() #2 {main} thrown in /var/www/pdo_check.php on line 251 *
    I got this error earlier with OCI drivers, then I added the datatype while binding the values.
    Has anybody had this headache earlier??
    ##Works
    *$qu = oci_parse($connect, 'select pack.get_data(:p1,:p2,:p3,:p4)as rc from dual');
    $p1 = (int)121;
    $p2 = (int)222;
    $p3 = (int)324;
    $p4 = (int)001;
    oci_bind_by_name($qu,":p1",$p1,10,OCI_B_INT);
    oci_bind_by_name($qu,":p2",$p2,10,OCI_B_INT);
    oci_bind_by_name($qu,":p3",$p3,10,OCI_B_INT);
    oci_bind_by_name($qu,":p4",$p4,10,OCI_B_INT);
    oci_execute($qu) or die("did not execute");
    $r = oci_fetch_array($qu);*
    ##Does not work
    *$sql = 'select pack.get_data(:p1,:p2,:p3,:p4) from dual';
    $result = $this->dbConnect->prepare($sql);
    $p1 = (int)2;
    $p2 = (int)2;
    $p3 = (int)2;
    $p4 = (int)6;
    $result->bindParam(':p1', $p1, PDO::PARAM_INT);
    $result->bindParam(':p2', $p2, PDO::PARAM_INT);
    $result->bindParam(':p3', $p3, PDO::PARAM_INT);
    $result->bindParam(':p4', $p4, PDO::PARAM_INT);
    $result->execute();*
    I am still perplexed why is PDO giving me an error, when I have virtually mentioned everything is asks for?

    I think the only person who can really answer this question is Chris Jones. For my money I tend to steer clear of PDO as it is a bit quirky ( at least in my experience ) and it does not support reference cursors.

  • Display drivers for linux

    I have Toshiba Satellite P20, and I would like to install debian or mandrake distribution, however there is serious problem with display configuration. I cannot set proper screen resolution. Does anybody know where I can get drivers for linux?? Graphic chip is GeForce FX Go5200 with atypical screen resolution 1440:900 pixels.

    Hi MichalDyzma,
    months ago I had the same problem with a toshiba notebook of a friend. He wants to install also a linux distribution and I found a very good linux page from toshiba.
    Maybe your model is also listed as linux compatible!?!
    Here is the link www.toshiba-tro.de then go to Operating
    System and Unix based systems.
    Bye Tom

  • Broadcom 4401 Lan Drivers for Linux

    Hi
    I recently bought   648 Max (MS-6585)  with Broadcom 4401 onboard LAN chip.
    I couldn't find drivers for Linux for the lan chip. The rest of the system seems to work fine.
    Does anyone have experience running linux on this motherboard?
    thanks
    Suresh

    Quote
    Originally posted by wonkanoby
    any goodlink
    I have already checked this link..drivers are available only for windows.
    Suresh

  • Cursor Parse Exception With OCI Drivers

    I am getting the following Error if I call an Oracle Function with two
    Params. Based on the values of parameters the where clause is changed but
    returns the same Resultset. If I already have called the fucntion once and
    then pass different values to the parameters I get the following erros.
    I am closing the Connection, Resultset, and Callable statement at the end of
    my call to the Function.
    I am using OCI Drivers
    I am using Bind Variables in Oracle Function.
    Here is the Error
    Label Code is SMOCONTESTS
    java.sql.SQLException: ORA-01475: must reparse cursor to change bind
    variable da
    tatype
    at weblogic.db.oci.OciCursor.getCDAException(OciCursor.java:238)
    at weblogic.jdbcbase.oci.Statement.executeUpdate(Statement.java:869)
    at weblogic.jdbcbase.oci.Statement.execute(Statement.java:1364)
    at
    weblogic.jdbc.pool.PreparedStatement.execute(PreparedStatement.java:4
    5)
    at
    weblogic.jdbc.rmi.internal.PreparedStatementImpl.execute(PreparedStat
    ementImpl.java:289)
    at
    weblogic.jdbc.rmi.SerialPreparedStatement.execute(SerialPreparedState
    ment.java:398)

    Make sure ORACLE_HOME is properly set in your environment.
    Also WLS is not able to find the library in PATH env variable.
    Otherwise do this
    java -Djava.library.path=$WL_HOME/bin/oci815_8 etc. etc.. weblogic.Server
    where WL_HOME is your weblogic installation directory and i assume you want to
    use oci815 or load the
    appropriate dll.
    Hope this helps
    Let us know if you still see problems.
    Kumar
    Lee Mei Wah wrote:
    Hi
    I've the problem of creating the oracle connection pool wtih error
    message:
    java.sql.SQLException: System.loadLibrary threw
    java.lang.UnsatisfiedLinkError with the
    message 'no weblogicoci36 in java.library.path'.
    I'm running Weblogic 5.1 and oracle8.0.5 on NT.
    Has anyone got a solution for that?
    Lee
    "Jennifer Yang" <[email protected]> wrote in message
    news:3998a1d1$[email protected]..
    I was running batch update example, and I ran into the same problem, buton
    NT.
    What do I need to do?
    We are using WebLogic 5.1
    Jennifer
    "Kelvin Yip" <[email protected]> wrote in message
    news:3994602b$[email protected]..
    I think you may have followed their documentation and it is wrong. You
    may
    have set your LD_LIBRARY_PATH to
    oci80x_x but you should look for ...weblogic/lib/soloris/oci80x_xinstead.
    You are picking up the NT dll not the soloris so.
    "Sudharsan Srinivasan" <[email protected]> wrote in message
    news:39919e36$[email protected]..
    Hi I'm using the WebLogic's driver. It is giving the following error
    when
    I try to start the connection pool.
    "<JDBC Pool> Failed to create connection pool "oraclePool"
    <JDBC Pool> weblogic.common.ResourceException:
    weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    java.sql.SQLException: System.loadLibrary threwjava.lang.UnsatisfiedLinkError
    with the message 'no weblogicoci34 in java.library.path'."
    I'm running WebLogic 4.5.2 and I have setup the LD_LIBRARY_PATH.
    Thanks in advance.
    -Sudharsan.

  • 8.1.6 JDBC OCI drivers ??

    where can I find this OCI Drivers for NT?
    I found them only for Solaris...
    Thank's

    Yes. I have been using the 8.1.6 OCI driver with JDK 1.2 for about a month now...

  • OCI Drivers in JDBC receiver

    Hi All,
    Brief Scenario: Insert data to CLOB field (source field may be more than 4000kb). Requirement to use OCI drivers in JDBC receiver adapter.
    When calling Stored Procedure to insert CLOB data field, exception thrown by AE or Oracle server:
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'SP_ORDERS' (structure 'STATEMENT'): java.sql.SQLException: ORA-00932: inconsistent datatypes: expected %s got %s
    I want to confirm whether SAP support OCI drivers using Stored Procedure?.
    Thanks,
    Rajesh Yallabandi

    Not solved... work around alternate solution.
    Edited by: sappi71 on Jun 20, 2011 10:38 PM

  • MSI MotherBoard's Drivers for Linux

    I'm looking for MSI Drivers for linux, or at least the soundcard driver.

    Hi juanchorada,
    Which Mobo are you planning to use and which version/distro of Linux?
    Axel :D

  • What are the advantages of using Hyper-V's synthetic drivers with Linux VMs?

    We are moving our virtualization platform from Citrix's XenServer to Hyper-V on Windows Server 2008 R2. As part of this project I need to migrate, in one form or another, some Debian Linux servers over to Hyper-V. I have successfully built a Debian-based
    server on our new Hyper-V platform and I'm beginning to test it.
    Debian 6 (Squeeze) uses the 2.6.32 kernel which includes the Hyper-V synthetic drivers, but it is not considered a supported operating guest operating system by Microsoft. I'm a little hesitant in trying to use them unless there's a compelling reason to,
    as other folks have had trouble
    What advantages do the Hyper-V synthetic drivers offer over the emulated drivers?
    For those of you who have experience with the Xen hypervisor, is using the synthetic drivers analgous to para-virtualizing a guest operating system?
    Are then any noteworthy dangers or drawbacks of NOT using the synthetic drivers?
    Why should I bother to either a) deal with the reported instability of the Hyper-V drivers currently in the kernel, b) try to build a newer kernel, or c) try to make the Virtual Machine Additions work with a distribution
    they weren't designed for when everything seems to "just work"?

    The synthetic drivers 'talk' more directly to the actual hardware, bypassing most of the hypervisor (for common data operations). This dramatically cuts down on the hypervisor overhead related to most network activity.
    If your server doesn't communicate much on the network, or if your hardware is well undercommitted, you should be fine with the emulated drivers. There's definitely a performance penalty for doing this however.

Maybe you are looking for

  • Ipod touch 8gb wont connect to computer or itunes

    My ipod touch will not connect to my computer or itunes. i have a new charger because one it came with broke. but when i try and download music the ipod wont show up. It charges but it will not show up so i can download music.? help please!

  • Unix Environment Variables

    I use EBS 11.5 and I am trying to use XML Publisher with RTF files for PO printing. I have a main script loaded into Oracle as the template and it uses <?import:file///home/dave/scripts/test.rtf?> to pull in a subtemplate. I want to change this to re

  • Edit functions grayed out in QT 7 Pro?

    MY digital camera .avi files are editable within QT 7 Pro, until I save them, and they become .mov files. Then, I cannot edit or resave. All of these functions are grayed out. I have tried saving as "save", "save as", always as self-contained. I neve

  • Project and other data not publishing

    P6 R8.2 SP1, HF16 on Weblogic. Data is not publishing. I followed the steps in 1324828.1, but publishing did not occur as expected. I then found and followed the steps in 1418876.1 to fix the "stuck services" issue with the 'JT_ProjectArbiter'. Upon

  • Unable to Load Music Files to ITunes

    I am able to load music from a CD using the import feature. However I have alot of music on a memory stick. The files are not protected and are audio CD files. They are labeled as Track01, Track02 etc. I tried "add folder" and "add files" and selecte