JDBC to Oracle on HPUX

I am trying to implement a connection to Oracle (7.3.4) from Java running on an HPUX server... I noticed that Oracle only has JDBC for Windows and Solaris.
Can anyone suggest a way to make this work?
TIA

Hi!
Try those from Solaris. They should work ...
Damir

Similar Messages

  • Build Issue(package weblogic.jdbc.vendor.oracle does not exist) weblogic10

    Hi All,
    I am getting below build error. I am migrating weblogic 10. Which jar file contains this interface: weblogic.jdbc.vendor.oracle.OracleThinClob?
    Error:
    package weblogic.jdbc.vendor.oracle does not exist [javac] if (theClob instanceof weblogic.jdbc.vendor.oracle.OracleThinClob)
    I already got weblogic.jar file from weblogic 10.
    Thanks,
    Srinivas

    Srinivas U wrote:
    Hi All,
    I am getting below build error. I am migrating weblogic 10. Which jar file contains this interface: weblogic.jdbc.vendor.oracle.OracleThinClob?
    Error:
    package weblogic.jdbc.vendor.oracle does not exist [javac] if (theClob instanceof weblogic.jdbc.vendor.oracle.OracleThinClob)
    I already got weblogic.jar file from weblogic 10.
    Thanks,
    SrinivasIt's in the datasource module/jar: modules/com.bea.core.datasource_1.0.0.0.jar

  • [Oracle JDBC Driver][Oracle]ORA-31011: XML parsing failed

    Hi,
    I have got the following error when i tired to upload an XML file in my application. My application will insert the XML file in to Oracle 10g data base table. (Our DB server is Oracle 10g).
    The error is as follows:-
    [BEA][Oracle JDBC Driver][Oracle]ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00004: internal error "MultiChar overflow"
    Error at line 20795
    ORA-06512: at "SYS.XMLTYPE", line 254
    ORA-06512: at line 1
    The XML file contains more than 90,000 lines in it. Please help.
    Thanks!
    Siva K.

    Is this a specific problem with 10G release? We are using 10.2.0.4.0.
    Using CLOB, We think that this may hit the performance of the application as we are using large XML files.

  • Error JDBC Adapter Oracle 10g

    Hi guys, i hope somebody would help me. I've a JDBC Adapter who's trying to write in a DB Oracle 10g, but i got this error.
    Receiver Adapter v2108 for Party '', Service <service>:
    Configured at 11:54:35 2005-11-15
    Processing Error: Accessing database connection 'jdbc:oracle:thin:@<host>:<port>:<db>' failed: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Addtional information: JDBC driver 'oracle.jdbc.driver.OracleDriver' loaded successfully, additional driver information:
    Available JDBC drivers:
    oracle.jdbc.driver.OracleDriver, 1.0 JDBC compliant
    com.microsoft.jdbc.sqlserver.SQLServerDriver, 2.2 JDBC compliant
    It could be because of the version of my oracle driver, but i'm not sure. And if it's a driver version problem, how could i fix it to be able to support Oracle 10g.
    Well, thanks in advance.

    Hi,
    this message indicates that it seems veverythin ok on the server side, but your driver cannot reach the DB. Did you configure this with openSQL? did you check the SQL Trace?
    Regards,
    Benny

  • Class Not Found: JDBC driver oracle.jdbc.driver.OracleDriver

    Does anyone can help?
    When I install the OpenBravo, I get the error shown below:
    Class Not Found: JDBC driver oracle.jdbc.driver.OracleDriver could not be loaded.
    I am using the Oracle XE, jdk1.5.0_06, Apache Tomcat 5.5.17.

    include the jar file classes111.jar in your classpath, it will work
    The location would be like
    C:\Applns\oracle9204\jdbc\lib\classes111.jar;
    set the classpath with this jar in command prompt
    set CLASSPATH=%CLASSPATH%;C:\Applns\oracle9204\jdbc\lib\classes111.jar;

  • Performanceproblem with WL6.1 JDBC and Oracle

    Hi!
    I have a big performance-problem using wl6.1, jdbc and oracle.
    My Server is sending a Vector with NodeBeans via JDBC to a OracleDB. The answer
    comes immediately with the timeout.
    Why is the EJB waiting for the timeout?
    Is it a problem of configuration?
    Thanks
    Thomas

    Hi Sree,
    here I send You the class with the main problem. The call queryDataSet.refresh();
    is the timeconsuming part.
    We are using WL6.1sp2, Oracle 8.1.7 with classes12. In our environment we can
    not use connectionpools.
    It comes back with a timeout AND the data. Calling it again immediately it takes
    2/3 of the time the timeout is set.
    Do You have a fine solution?
    Thanks
    Thomas
    package ppif.db;
    import java.rmi.*;
    import ppif.bo.*;
    import java.util.*;
    import com.borland.dx.dataset.*;
    import com.borland.dx.sql.dataset.*;
    import java.math.*;
    public class connector {
         private ppif.mapping.NodeDescriptions nodeDescriptions;
         public connector(ppif.mapping.NodeDescriptions nodeDescriptions) {
              this.nodeDescriptions = nodeDescriptions;
         public connector() {
              this.nodeDescriptions = nodeDescriptions;
         public Vector fetchNodes(ppif.bo.Node filterNode) throws RemoteException {
              String childClassName = null;
              Vector nodeVector = new Vector();
              Node node = null;
              if (nodeDescriptions == null) throw new RemoteException("nodeDescriptions ==
    null");
              // childClassName zu gegebenen filterNode ermitteln
              if (filterNode.getClassName().equals("DefaultRoot")) childClassName = "ST";
              if (filterNode.getClassName().equals("PrismaProjectsRoot")) childClassName =
    "PrismaProjects";
              if (childClassName == null) throw new RemoteException("Zum übergebenen filterNode
    wurde kein chlidClassName gefunden.");
              if (nodeDescriptions.getNodeDescription(childClassName) == null) throw new RemoteException("Für
    die ChildClass "+childClassName+" ist kein Mapping definiert.");
              // Vector mit Child-Knoten erzeugen durch DB-Zugriff
              ppif.mapping.NodeDescription nodeDescription = nodeDescriptions.getNodeDescription(childClassName);
    Database database = new Database();
    ParameterRow parameterRow = null;
    Column column = null;
    QueryDataSet queryDataSet = new QueryDataSet();
    // DB-Connect generieren
    database.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor(nodeDescription.dbUrl,
    nodeDescription.dbUser, nodeDescription.dbPassword, false, "oracle.jdbc.driver.OracleDriver"));
    int queryCount = 0;
    // Schleife über alle queries der childKlasse, gemäss Mapping
    for (Iterator it = nodeDescription.mappingQueries.iterator(); it.hasNext();
                   ppif.mapping.MappingQuery mappingQuery = (ppif.mapping.MappingQuery)it.next();
                   String queryString = mappingQuery.getQueryString();
                   parameterRow = mappingQuery.getParameterRow();
                   // ParameterRow mit Input-Werten füllen
                   for (int i=0; i<parameterRow.getColumnCount(); i++) {
                        String columnName = parameterRow.getColumn(i).getColumnName();
                        String filterAttributeName = columnName;
                        Object filterAttributeValue = filterNode.getAttribute(filterAttributeName).getVal1();
                        switch (parameterRow.getColumn(i).getDataType()) {
                             case com.borland.dx.dataset.Variant.BIGDECIMAL:
                                  BigDecimal val = (BigDecimal)filterAttributeValue;
                                  parameterRow.setBigDecimal(i, val);
                                  break;
                             case com.borland.dx.dataset.Variant.STRING:
                                  parameterRow.setString(i, (String)filterAttributeValue);
                                  break;
                             default:
                                  throw new RemoteException("Unbekannter Datentyp");
                   // Query generieren
                   queryDataSet.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database,
    queryString, parameterRow, false, Load.ALL));
                   // DB-Verbindung öffnen
                   queryDataSet.open();
                   // Rolle setzen
                   if (nodeDescription.dbRole != null) {
                        java.sql.Statement setRole;
                        String roleName = nodeDescription.dbRole;
                        String rolePwd = nodeDescription.dbRolePassword;
                        try {
                             java.sql.Connection jdbcConnection = database.getJdbcConnection();
                             setRole = jdbcConnection.createStatement();
                             setRole.execute("SET ROLE " + roleName + " IDENTIFIED BY " + rolePwd);
                        } catch (java.sql.SQLException exception) {
                             throw new RemoteException(exception.getMessage());
                        } catch (Exception exception) {
                             throw new RemoteException(exception.getMessage());
                   // Query ausführen
                   queryDataSet.refresh();
                   // Datensätze in Node-Objekte umwandeln
                   int columnCount = queryDataSet.getColumnCount();
                   String columnArray[];
                   columnArray = queryDataSet.getColumnNames(columnCount);
                   for(queryDataSet.first(); queryDataSet.inBounds(); queryDataSet.next()) {
                        Node rNode = nodeDescriptions.createNodeInstance(childClassName);
                        // Abfrageergebnissen in eine Attributliste übertragen
                        for (int i=0; i<columnCount; i++) {
                        nodeVector.add(rNode);
                   queryCount++;
              return nodeVector;
         public ppif.mapping.NodeDescriptions getNodeDescriptions() {
              return nodeDescriptions;
         public void setNodeDescriptions(ppif.mapping.NodeDescriptions nodeDescriptions)
              this.nodeDescriptions = nodeDescriptions;
    "Sree Bodapati" <[email protected]> wrote:
    hi Thomas,
    please post more detail on what your code is doing. if possible a code
    snippet/error messages/thread dump
    sree
    "Thomas Eberhard" <[email protected]> wrote in message
    news:[email protected]...
    Hi!
    I have a big performance-problem using wl6.1, jdbc and oracle.
    My Server is sending a Vector with NodeBeans via JDBC to a OracleDB.
    The
    answer
    comes immediately with the timeout.
    Why is the EJB waiting for the timeout?
    Is it a problem of configuration?
    Thanks
    Thomas

  • Where can i find the Oracle JDBC for Oracle RDBMS 8.1.7 ? Thanks.

    Where can i find the Oracle JDBC for Oracle RDBMS 8.1.7 ? Thanks.

    http://otn.oracle.com/software/tech/java/sqlj_jdbc/content.html

  • Oracle.jdbc vs oracle.jdbc2

    Hello World,
    Whar is the differens between
    oracle.jdbc
    and
    oracle.jdbc2
    Where ca I read more about it?
    Best regards
    Anders Gunnare
    Frontec

    The weblogic driver is a type 2 (native) driver based upon the native OCI
    Oracle client libraries. The Oracle thin driver is a type 4 (pure java)
    driver. Type 2 drivers are typically faster but if you want to make a
    performance based decision you should also include the type 2 driver(s)
    available from Oracle in the comparison.
    -Charlie
    Mahesh wrote:
    Hi,
    We are curently using Oracle thin drivers for our
    production servers. The Weblogic version is 5.1 SP9 and Oracle version is
    8.1.6. Does anybody have any information about performance comparisons
    between Weblogic's thin drivers and Oracle's ?
    Thanx in advance
    Mahesh

  • SAP 4.6C Installation in Cluster error - Oracle 10g HPUX 11.23

    Hi all,
    We are installing 4.6C in oracle 10g/hpux 11.23 in a cluster environment in primary node.
    During the last phase of installation, I get the below error.
    INFO 2008-05-05 10:53:02
        Starting up the SAP System
    INFO 2008-05-05 10:53:02 DBR3START_IND_ORA SyCoprocessCreateAsUser:300
        Creating coprocess /bin/sh /home/r3padm/startsap_dbciR3Pd_00  as
        user r3padm and group sapsys ...
    INFO 2008-05-05 10:53:02 DBR3START_IND_ORA SyGroupIDGet:100
        Group id for group sapsys is 201.
    INFO 2008-05-05 10:53:02 DBR3START_IND_ORA SyUserIDGet:300
        User id for user r3padm is 7029.
    INFO 2008-05-05 10:53:02 DBR3START_IND_ORA ExecuteDo:0
        RC code form SyCoprocessWait  = 127 .
    ERROR 2008-05-05 10:53:02 DBR3START_IND_ORA ExecuteCheck:0
        Exit code from /bin/sh: 127.
    ERROR 2008-05-05 10:53:02 DBR3START_IND_ORA InternalInstallationDo:0
        Phase failed.
    ERROR 2008-05-05 10:53:02 DBR3START_IND_ORA InstallationDo:0
        Phase failed.
    ERROR 2008-05-05 10:53:02 InstController Action:0
        Step DBR3START_IND_ORA could not be performed.
    ERROR 2008-05-05 10:53:03 Main
        Installation failed.
    ERROR 2008-05-05 10:53:03 Main
        Installation aborted.
    But I am able to start SAP manually using startsap and its successfull.
    Can someone help me, what the above error is?
    Thanks & Regards
    Senthil

    Markus,
    I read the note, and also I have installaed 4.6C/oracle 10g/hpux11.23 for more than 4 servers and it was successfull.
    But this time I am installing in a cluster environment. So I am facing this issue. When I checked in the install directory with ls -lrt the last file isdatabase.log
    INFO 2008-05-06 16:02:43 RFCRSWBOINI_IND_IND CRfcOpen:0
        RfcOpen() was successful.
    INFO 2008-05-06 16:02:44 RFCRSWBOINI_IND_IND CRfcPing:0
        Pinging of RFC destination was successful.
    INFO 2008-05-06 16:02:45 RFCRSWBOINI_IND_IND GetSaprelease:0
        46C
    INFO 2008-05-06 16:02:46 RFCRSWBOINI_IND_IND ReadInstvers:0
        INSTVERS loaded successfully.
    INFO 2008-05-06 16:02:48 RFCRSWBOINI_IND_IND ReadInstvers:0
        INSTVERS loaded successfully.
    INFO 2008-05-06 16:02:49 RFCRSWBOINI_IND_IND DeleteRow:0
        Deleted: 1 rows
    INFO 2008-05-06 16:02:50 RFCRSWBOINI_IND_IND ReadInstvers:0
        INSTVERS loaded successfully.
    INFO 2008-05-06 16:02:50 RFCRSWBOINI_IND_IND CleanupSAPEntries:0
        Deletion of 0 SAP rows
    INFO 2008-05-06 16:02:52 RFCRSWBOINI_IND_IND ReadInstvers:0
        INSTVERS loaded successfully.
    ERROR 2008-05-06 16:02:53 RFCRSWBOINI_IND_IND StartJob:0
        Job RSWBOINS_JOB could not be started.
    ERROR 2008-05-06 16:02:53 RFCRSWBOINI_IND_IND InstallationDo:0
        Phase failed.
    ERROR 2008-05-06 16:02:53 InstController Action:0
        Step RFCRSWBOINI_IND_IND could not be performed.
    ERROR 2008-05-06 16:02:53 Main
        Installation failed.
    ERROR 2008-05-06 16:02:53 Main
        Installation aborted.
    dcecpn0:root >
    Also when I logged into the SAP and I can see some error messages in sm21
    18:18:23 MS                           Q0U Client dbciR3Pd_R3P_00 is not known to the message server
    18:18:23 MS                           Q0U Client dbciR3Pd_R3P_00 is not known to the message server
    18:18:23 DIA 02 000 SAPSYS            BY4 Database error 2289 at INS access to table DDLOG
    18:18:23 DIA 02 000 SAPSYS            BY0 > ORA-02289: sequence does not exist#
    18:18:23 MS                           Q0U Client dbciR3Pd_R3P_00 is not known to the message server
    18:18:23 MS                           Q0U Client dbciR3Pd_R3P_00 is not known to the message server
    18:18:23 MS                           Q0U Client dbciR3Pd_R3P_00 is not known to the message server
    Its like I am able to display SCC4, when I change to change mode, I get the below error message
    "System error: Unable to lock table/view T000"
    Can you help
    Thanks
    Senthil

  • b font color ='red' Java JDBC and Oracle DB URGENT HELP PLEASE /font /b

    Hello, I am a newbie. I'm very interested in Java in relation to JDBC, Oracle and SAP.I am trying to connect to an Oracle DB and I have problems to display the output on the consule in my application. What am I doing wrong here . Please help me. This is my code: Please Explain
    import java.sql.*;
    import java.sql.DriverManager;
    import java.sql.Connection;
    public class SqlConnection {
         public static void main(String[] args) {
              Class.forName("oracle.jdbc.driver.OracleDriver"); //Loading the Oracle Driver.
              Connection con = DriverManager.getConnection
              ("jdbc:orcle:thin:@34.218.5.3:1521:ruka","data","data"); //making the connection.
              Statement stmt = con.createStatement ();// Sending a query to the database
              ResultSet rs = stmt.executeQuery("SELECT man,jean,test,kok FROM sa_kostl");
              while (rs.next()) {
                   String man = rs.getString("1");
                   String jean = rs.getString("2");
                   String test = rs.getString("3");
                   String kok = rs.getString("4");
                   System.out.println( man, jean, test,kok );//here where my the
                                                 //compiler gives me errors
              stmt.close();
              con.close();
    }

    <b><font color ='red'>Java JDBC and Oracle DB URGENT HELP PLEASE</font></b>Too bad your attempt at getting your subject to have greater attention failed :p

  • JDBC external oracle invalid URL

    Ok after deploying oracle jdbc now I am getting this error:
    Error during database connection to the database URL 'jdbc:oracle:thin@torigai:1527:DSORACLE' using the JDBC driver 'oracle.jdbc.driver.OracleDriver': 'com.sap.aii.adapter.jdbc.sql.DriverManagerException: Cannot establish connection to URL 'jdbc:oracle:thin@torigai:1527:DSORACLE': SQLException: Invalid Oracle URL specified'
    Could this be becauase the external oracle DB is a 9.2 instance and the source is 10g?  Should I deploy classes14.jar along with ojdbc.jar.....?
    Thanks
    Mikie

    Hi,
    The reason is that the URL is incorrect. You have missed a ":" after "thin".
    This is what it should be,
    <b>jdbc:oracle:thin<i>:</i>@torigai:1527:DSORACLE</b>
    ><i>Should I deploy classes14.jar along with ojdbc.jar.....?</i>
    Not needed at all. Infact you should use either ojdbc.jar or classes14.jar and not both.
    From the SAP note : 831162
    <i>
    have deployed the Oracle classes12.zip / classes12.jar JDBC driver as per the instructions in the XI Configuration Guide.
    Unfortunately, I frequently notice hanging database connections. A thread dump taken according to the instructions in note 710154 shows one or more blocking JDBC Sender/Reciver threads and optionally that the JVM has detected a deadlock.
    A: The Oracle classes12.zip / classes12.jar driver is compatible with JDK 1.2 and 1.3 only, but not with JDK 1.4. Upgrade to a current version of the driver (ojdbc14.jar). For details, refer to note 941317.
    Make sure that you remove classes12.zip / classes12.jar from aii_af_jmsproviderlib.sda prior to adding the new driver as per the instructions in the answer to question #1 above as you will get a class name collision otherwise (all JARs from aii_af_jmsproviderlib.sda are loaded into the same class loader and the driver class name of both driver versions is the same).
    Before deploying the updated driver, ensure that the new version is still compatible with your Oracle database server release. For details, refer to the release notes provided by Oracle.</i>
    Regards,
    Bhavesh

  • Oracle.sql.ARRAY incompatible with weblogic.jdbc.vendor.oracle.OracleArray

    Hi,
    I am facing following issue in my one environment. but in other environment same class path is working fine. I have compared all jar and classpath for both weblogic server.
    I am using weblogic 11g.
    27 Mar 2013 15:21:09,507 ERROR XXXServlet:293 - oracle.sql.ARRAY incompatible with weblogic.jdbc.vendor.oracle.OracleArray
    java.lang.ClassCastException: oracle.sql.ARRAY incompatible with weblogic.jdbc.vendor.oracle.OracleArray
    at com.emc.nems.wsd.ui.beans.reports.mpapi.FacilityBeanType.nullSafeGet(FacilityBeanType.java:126)
    at org.hibernate.type.CustomType.nullSafeGet(CustomType.java:128)
    at org.hibernate.type.AbstractType.hydrate(AbstractType.java:105)
    at org.hibernate.persister.entity.AbstractEntityPersister.hydrate(AbstractEntityPersister.java:2114)
    at org.hibernate.loader.Loader.loadFromResultSet(Loader.java:1404)
    at org.hibernate.loader.Loader.instanceNotYetLoaded(Loader.java:1332)
    at org.hibernate.loader.Loader.getRow(Loader.java:1230)
    at org.hibernate.loader.Loader.getRowFromResultSet(Loader.java:603)
    at org.hibernate.loader.Loader.doQuery(Loader.java:724)
    at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:259)
    at org.hibernate.loader.Loader.doList(Loader.java:2232)
    at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2129)
    at org.hibernate.loader.Loader.list(Loader.java:2124)
    at org.hibernate.loader.custom.CustomLoader.list(CustomLoader.java:312)
    at org.hibernate.impl.SessionImpl.listCustomQuery(SessionImpl.java:1723)
    at org.hibernate.impl.AbstractSessionImpl.list(AbstractSessionImpl.java:165)
    at org.hibernate.impl.SQLQueryImpl.list(SQLQueryImpl.java:175)
    at com.emc.nems.oms.dao.hibernate.util.OMSHibBaseDAO.executeNamedQueryWithoutTransaction(Unknown Source)
    at com.emc.nems.wsd.dao.hibernate.reports.mpapi.MpapiReportHibDAO.findMCR020(Unknown Source)
    at com.emc.nems.wsd.ui.handler.reports.ReportsHandler.getMPAPIData(Unknown Source)
    at com.emc.nems.wsd.ui.servlets.reports.mpapi.MpapiServlet.executeReport(XXXServlet.java:1009)
    at com.emc.nems.wsd.ui.servlets.reports.mpapi.MpapiServlet.generateAuditFile(XXXServlet.java:318)
    at com.emc.nems.wsd.ui.servlets.reports.mpapi.MpapiServlet.execute(XXXServlet.java:273)
    at com.emc.nems.wsd.ui.servlets.reports.mpapi.MpapiServlet.doGet(XXXServlet.java:207)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3731)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3695)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2285)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2184)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1459)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Regards,
    Abhishek

    Creating my Oracle connection works fine ... code as follows:
    <i>Context ctxt = getInitialContext();
    DataSource dataSource = (DataSource) ctxt.lookup(poolName);
    Connection conn = dataSource.getConnection();
    OracleConnection oracleConn = (OracleConnection)((WLConnection)conn).getVendorConnection();</i>
    I also have reviewed documentation:
    http://e-docs.bea.com/wls/docs81/jdbc/thirdparty.html. In section 'Using OracleStruct Extension Methods' it highlights that
    <i>java.sql.Struct struct =(weblogic.jdbc.vendor.oracle.OracleStruct)(rs.getObject(2));</i>
    None of the documentation actually mentions <b>oracle.sql.STRUCT</b>. For Weblogic to truely provide support for Oracle it needs an easy way of converting to this data type. At present I cannot interact with Oracle APIs until I can create an oracle.sql.STRUCT.

  • Where did weblogic.jdbc.vendor.oracle.OracleThinBlob go?

    I just upgraded from 8.1sp4 to 10.1 and the problem I am facing is that the import
    import weblogic.jdbc.vendor.oracle.OracleThinBlob;
    is no longer valid. I cannot find it even to import. What am I missing??:|
    -Joe

    Hi
    You will find the 'weblogic.jdbc.vendor.oracle.OracleThinBlob' located in the 'com.bea.core.datasource_1.0.0.0.jar'. You will find this jar in the modules directory, in the top level of your WebLogic 10 installation
    e.g. for me, it is located in:
    C:\wls10\modules\com.bea.core.datasource_1.0.0.0.jar
    Vimala-

  • Is there any incompatibility in using different JDBC and Oracle database versions?

    Hi everybody,
    I hope you can answer me ASAP.
    Which version of JDBC driver for Oracle could I use to access an Oracle database version 8.0.4.3.0 running on a SUN machine?
    Is it necessary to use the specific driver concerning to that version or could we use the JDBC version 8.1.6?
    If we decide to use JDBC 8.1.6 to work against the 8.0.4.3.0 database, will we find any incompatibility or problem?
    Thanks.
    null

    I don't know the answer to your question, but while looking for something else, I found a table listing "requirements and compatibilities for oracle jdbc drivers" that might answer your question:
    http://technet.oracle.com/docs/products/oracle8i/doc_library/817_doc/java.817/a83724/getsta1.htm#1008206
    (My aologies if that URL gets broken apart by this posting software and you have to piece it together.)
    Hope this helps.

  • JDBC on Oracle 8.1.5 on Digital Unix System

    In my Digital Unix system , Oracle is loaded on a file system different from the user file system . The necessary zip files are in a directory within the Oracle home directory .
    When I do an import oracle.jdbc.driver.*;
    from a program in my user file system
    it says not found .Other programs not using jdbc however run without any problem from my default directory .
    Does one need to define a classpath in one's '.profile' pointing to the dirctory where the zip files are located . I have done that already . The problem persists .
    What else needs to be done ?
    Does digital unix system read zip files ? or are tar files required ?
    null

    Currently, Designer 6.0 is certified against Oracle 8.1.6 if you install Designer patch set 4.

Maybe you are looking for

  • Merging libraries and home sharing

    What is the most efficient way to consolidate and share a library consisting of music from two Apple IDs? Our setup is this: My husband and I each have our own iTunes accounts, plus we have imported our own CDs to our respective libraries. I have a M

  • Lightbox loading really slow on website

    Does anyone else have this issue? I created a few lightbox widgets on one page, thumbnails are 32kb, the larger image that pops up is around 200kb and are all compressed for the web. Seems like those are small enough files, but the page takes up to 1

  • Can I Manually Create an iMovie Event Library

    When we import movies from our digital camcorder, I like the way iMovie automatically creates event libraries for the year in which the movies were filmed. However, when we bring in analog media (using a converter), it simply imports the movies into

  • Workflow fo returned sales order modified from updating the billing block t

    please tell me how to find returned sales order modified from updating the billing block to delivery block and how to create blocks here.i want to know updating means what is happening here.

  • Opening downloaded .asp (Citrix ICA) files with Safari

    I would like to have Safari, after downloading a Citrix connection file, open the Citrix ICA Client application and then use the file the establish a connection. In other browsers, you can set this up under "helper applications" or something like tha