DBD Oracle Problem: Can't load Oracle.so

Hello,
I've successfully installed Oracle (EAP release)
and DBI 1.06, everything works fine so far.
Unfortunately, the DBD Oracle Installation fails
I've tried all version from 0.55 to 0.59.
perl Makefile.PL and make is ok, but "make test"
fails most tests and says,
"Can't load blib/arch/auto/DBD/Oracle/Oracle.so
in (path)Dynaloader.PM line 168."
Oracle.so is there and readable.
In Dynaloader.pm before line 168 there's an interesting
comment:
Many dynamic extension loading problems will
appear to come from this section of code: XYZ failed
at line 123 of DynaLoader.pm (...)
But that doesn't help very much.
Any suggestions?
Heiko Dobrick
null

Hello Khusta,
1. This is the Swing forum - definitely not the right place for your question. ( Suggestion )
2. If everything worked fine and you now made two modifications (abstract class and jar file), test if only one modification is responsible for the problem.
3. >And I know that it [the database settings file] is in the jar file.
If your settings are stored in the jar file, you must read it from the jar file. This is a little bit different from reading the settings file at its original location.

Similar Messages

  • Can not load oracle db driver

    After load the following code and I got an error message"can not load oracle db driver"
    can you help me? thanks
    import java.io.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class DBPhoneLookup extends HttpServlet {
      public void doGet(HttpServletRequest req, HttpServletResponse res)
                                   throws ServletException, IOException {
        Connection con = null;
        Statement stmt = null;
        ResultSet rs = null;
        res.setContentType("text/html");
        PrintWriter out = res.getWriter();
        try {
          // Load (and therefore register) the Oracle Driver
          Class.forName("oracle.jdbc.driver.OracleDriver");
          // Get a Connection to the database
          con = DriverManager.getConnection(
            "jdbc:oracle:thin:@dbhost:1528:ORCL", "user", "passwd");
          // Create a Statement object
          stmt = con.createStatement();
          // Execute an SQL query, get a ResultSet
          rs = stmt.executeQuery("SELECT NAME, PHONE FROM EMPLOYEES");
          // Display the result set as a list
          out.println("<HTML><HEAD><TITLE>Phonebook</TITLE></HEAD>");
          out.println("<BODY>");
          out.println("<UL>");
          while(rs.next()) {
            out.println("<LI>" + rs.getString("name") + " " + rs.getString("phone")); 
          out.println("</UL>");
          out.println("</BODY></HTML>");
        catch(ClassNotFoundException e) {
          out.println("Couldn't load database driver: " + e.getMessage());
        catch(SQLException e) {
          out.println("SQLException caught: " + e.getMessage());
        finally {
          // Always close the database connection.
          try {
            if (con != null) con.close();
          catch (SQLException ignored) { }
    }

    Hi ,
    In first look it seems a classpath problem. Means that your DB driver is not in the current class path .
    But if it is not that the try to find the exact exception for that use exception's printstacktrace() and get the exception message . So in the following block of of code put e.printstacktrace()
    catch(ClassNotFoundException e) {
    out.println("Couldn't load database driver: " + e.getMessage());
    }

  • Can't load oracle driver...

    h
    i'm trying to connect to my oracle db from my jbuilder application and get the following error...
    jdbc:oracle:thin@devserver05:1521:xxx_xxx
    error loading class.forname
    java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:191)
    this is created from my code...
    import java.sql.*;
    public class ConnectionManager {
    private static final String driveName = "oracle.jdbc.driver.OracleDriver";
    private static final String serverName = "dev_server05";
    private static final int serverPort = 1521;
    private static final String dataBaseSID = "xxx_xxx";
    private static final String userID = "xxxxx";
    private static final String password = "yyyyy";
    private static final String URL = "jdbc:oracle:thin@" + serverName + ":" + serverPort
    + ":" + dataBaseSID;
    public ConnectionManager() {
    public static Connection createConnection() throws SQLException{
    try {
    Class.forName(driveName);
    catch (ClassNotFoundException e1) {
    System.out.println(URL);
    System.out.println("error loading class.forname");
    e1.printStackTrace();
    Connection con = DriverManager.getConnection(URL, userID, password);
    return con;
    }

    and when i type the following into the command
    line...
    C:\jtm>java oracle.jdbc.driver.OracleDriver
    i get the following so i guess my path is ok.....
    Exception in thread "main"
    java.lang.NoClassDefFoundError:
    oracle/jdbc/driver/OracleDriverHi ,
    try adding the import statement for the oracle driver, which is
    import oracle.jdbc.driver.*;
    and don't forget to add your oracle driver in the classpath..
    hope this helps..
    Ganesh

  • Can't load Oracle 8i on Pentium 4

    I tried to install Oracle 8i ver 8.1.6 on a pentium 4 machine (HCL infiniti 2000) on Windows 98 O.S, but the Oracle universal installer doesn't start and gave the error.
    This program performed Illegal Operation and will be shutdown
    error javai.dll pagefault.
    I found that this is due to the JVM version provided with Oracle 8i. Pentium 4 supports JVM ver 1.3 & above. where as Oracle 8i comes with JVM 1.1.7.
    I can't run Javac onf JDK ver 1.2.1 and in lower versions. but it runs on JDK version 1.3.
    plese let me know if any patches available to solve this problem.
    - charles.

    Intel says there is a bug in oracle's OUI as well other swing based programs. The solution is to copy the CD to local drive and add -nojit as first parameter to JRE_MEMORY_OPTIONS e.g. JRE_MEMORY_OPTIONS="-nojit -mx32m"
    This will enable OUI to run. Even after installing oracle Net80 conf. asst won't start due to same reason.
    Go to HOME\admin\tools\ and edit netca.cl and netasst.cl to add same -nojit before -classpath.
    Do this for every tool that gives this prob such DBA studio...
    Ashish

  • SSL.GSTATIC,COM PROBLEM CAN'T LOAD SEARCHES AS THIS KEEPS COMING UP AND LOCKING UP SEARCH?

    I have three computers. My main one has firefox on it and it is the only one that I have trouble with. I use it most. But I now have started using the others as they have explorer and don't lock up from the searches. I like firefox best but if I can't fix this problem,. I am changing. any help here. Jim

    hello, please try to [[Reset Firefox – easily fix most problems|reset firefox]] and see if this can address the issue...

  • Path Problem: Can't Load Database Settings From  A File

    <b>I am writing a swing application with the following functionality:</b><br>
    (1) There is a base class that supports things like changing the look and feel &ndash; this is done via a JDialog that loads all the installed lafs from which the user selects a choice.<br>
    (2) Enables the user to set/change the physical database properties &ndash; location, password usernames and the like. -<br>
    The idea is that when the application starts up for the first time the user will be asked to provide the database settings and then they will be stored in a file and then every time the application starts the settings will be loaded from this file. This works out fine!!!!!!!!!<br>
    <br>
    <b>Now here is the problem:</b><br>
    All the above is supported by an abstract class that extends JFrame (I&rsquo;ve put abstract after testing) - MySuperFrame. After testing, I packaged this class together with other utility classes into a jar file.<br>
    So my application which inherits from MySuperFrame fails on start-up with an exception that the database settings file cannot be found &ndash; And I know that it is in the jar file.<br>
    +<br>
    I think that my problem is the path and nothing but the path &ndash; or relative path.+<br>
    <br>
    This is the structure of my project:<br>
    There is the src and the bin directories and then there is an external folder (not a package inside these two folders) called files (this is where my database settings file is stored).<br>
    How do I solve this problem?<br>
    How do I make sure my application loads the settings file regardless of where it is? I thought of passing the database settings file to a constructor of a database settings dialog class. But I don&rsquo;t know how to sort out the path issue.<br>
    <br>
    Please give me advice on how to implement that?

    Apologies for the bad formatting on the original posting. Here is the formmatted posting:
    Hi All,
    I am writing a swing application with the following functionality:
    (1) There is a base class that supports things like changing the look and feel &ndash; this is done via a JDialog that loads all the installed lafs from which the user selects a choice.
    (2) Enables the user to set/change the physical database properties &ndash; location, password usernames and the like. -
    The idea is that when the application starts up for the first time the user will be asked to provide the database settings and then they will be stored in a file and then every time the application starts the settings will be loaded from this file. This works out fine!!!!!!!!!
    Now here is the problem:
    All the above is supported by an abstract class that extends JFrame (I&rsquo;ve put abstract after testing) - MySuperFrame. After testing, I packaged this class together with other utility classes into a jar file.
    So my application which inherits from MySuperFrame fails on start-up with an exception that the database settings file cannot be found &ndash; And I know that it is in the jar file.
    +
    I think that my problem is the path and nothing but the path &ndash; or relative path.+
    This is the structure of my project:
    There is the src and the bin directories and then there is an external folder (not a package inside these two folders) called files (this is where my database settings file is stored).
    How do I solve this problem?
    How do I make sure my application loads the settings file regardless of where it is? I thought of passing the database settings file to a constructor of a database settings dialog class.*{color:#ff0000} But I don&rsquo;t know how to sort out the path issue.{color}*
    Please give me advice on how to implement that?

  • Can I install Oracle 8.1.7 Enterprise Edition on Windows 2000 Professional

    Sorry if this is a stupid question, but I have Windows 2000 professional edition loaded on my PC and I'm not sure what it allows. Can I load Oracle 8.1.7 Enterprise Edition of the database on this operating system, or do I need to load windows 2000 server software.
    Thanks
    Ryan

    Its a problem with oracle and pentium 4 processors actually. The solution involves renaming or deleting the symcjit.dll in the 8i installation package after you've copied the whole Cd onto your HDD!
    I've tried this and it install OK, with a few errors along the way, now I can't get the apache server working, nor on the 9i AS that I've installed as well. Let me know if you get anything useful please?
    Michael.
    [email protected]

  • Problem Running rpeports in oracle 10G

    when calling a report from my application form I get the following error:
    REP-52266: فشل خادم Reports الجاري تشغيله rep_pc1 في البدء.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    Console has the following lines also:
    C:\Documents and Settings\Administrator\Desktop>F:\DevSuiteHome_1\jdk\bin\java
    -Doracle.security.jazn.config=F:\DevSuiteHome_1\j2ee\DevSuite\config\jazn.xml -D
    oracle.home=F:\DevSuiteHome_1 -DORACLE_HOME=F:\DevSuiteHome_1 -jar F:\DevSuiteHo
    me_1\j2ee\home\oc4j.jar -userThreads -config F:\DevSuiteHome_1\j2ee\DevSuite\con
    fig\server.xml
    10/01/18 10:36:38 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    initialized
    10/01/18 10:37:43 FormsServlet init():
    configFileName: F:\DevSuiteHome_1/forms/server/formsweb.cfg
    testMode: false
    10/01/18 10:37:51 ListenerServlet init()
    10/01/18 11:30:09 Not able to load oracle.reports.util.EnvironmentGlobal class
    10/01/18 11:30:09 Using oracle.reports.util.Environment class
    10/01/18 11:30:13 REP-50139: ط╟ وع▀غ ═╨▌ ╟طعط▌ F:\DevSuiteHome_1\reports\server\
    rep_pc1.dat
    It is clear that oracle not able to load oracle.reports.util.enviromentGlobal class.
    I don't know how to solve the problem.
    Any one could help please??

    When writing the following :
    http://pc1:8889/reports/rwservlet/getserverinfo?server=rep_pc1
    I got the following error:
    REP-51002:failed to connect to server reports rep_pc1
    Here is what I have in rwserver.trc log file:
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): ALLUSERSPROFILE=C:\Documents and Settings\All Users
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): APPDATA=C:\Documents and Settings\Administrator\Application Data
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): CLIENTNAME=Console
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): CommonProgramFiles=C:\Program Files\Common Files
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): COMPUTERNAME=PC1
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): ComSpec=C:\WINDOWS\system32\cmd.exe
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): FP_NO_HOST_CHECK=NO
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): HOMEDRIVE=C:
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): HOMEPATH=\Documents and Settings\Administrator
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): LOGONSERVER=\\PC1
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): NUMBER_OF_PROCESSORS=2
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): OS=Windows_NT
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): Path=F:\DevSuiteHome_1\jdk\jre\bin\classic;F:\DevSuiteHome_1\jdk\jre\bin;F:\DevSuiteHome_1\jdk\jre\bin\client;F:\DevSuiteHome_1\jlib;F:\DevSuiteHome_1\bin;F:\DevSuiteHome_1\jre\1.4.2\bin\client;F:\DevSuiteHome_1\jre\1.4.2\bin;F:\oracle\product\10.2.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PERL5LIB=F:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;F:\oracle\product\10.2.0\db_1\perl\5.8.3\lib;F:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;F:\oracle\product\10.2.0\db_1\perl\site\5.8.3;F:\oracle\product\10.2.0\db_1\perl\site\5.8.3\lib;F:\oracle\product\10.2.0\db_1\sysman\admin\scripts;
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PROCESSOR_ARCHITECTURE=x86
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 10, GenuineIntel
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PROCESSOR_LEVEL=6
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PROCESSOR_REVISION=170a
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): ProgramFiles=C:\Program Files
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): SESSIONNAME=Console
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): SystemDrive=C:
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): SystemRoot=C:\WINDOWS
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): TEMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): TMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): USERDOMAIN=PC1
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): USERNAME=Administrator
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): USERPROFILE=C:\Documents and Settings\Administrator
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): windir=C:\WINDOWS
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): NLS_LANG=ARABIC_EGYPT.AR8MSWIN1256
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): REPORTS_TMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    [2010/1/20 3:17:13:343] Info 56025 (RWServer:startServer): جاري بدأ تشغيل Reports Server
    [2010/1/20 3:17:13:593] Info 65000 (Multicast:init): تمت تهيئة قناة الاتصالات
    [2010/1/20 3:17:13:593] Debug 50103 (Multicast:registerReceiver): Packet handler registered
    [2010/1/20 3:17:13:593] Info 50103 (ServerPacketHandler:start): ServerPacketHandler started successfully
    [2010/1/20 3:17:16:796] Info 56023 (ServerImpl:ServerImpl): Idle thread has been started
    [2010/1/20 3:17:16:796] Info 50103 (RWServer:startServer): Using multicast mechanism
    [2010/1/20 3:17:16:828] Info 56020 (EngineManager:spawnEngine): Launching engine rwEng-0
    [2010/1/20 3:17:17:0] Info 50103 (RWLocaleUtility:RWLocaleUtility): Using oracle.i18n.util.LocaleMapper class
    [2010/1/20 3:17:17:15] Debug 50103 (EngineManager:spawnEngine): Start engine command line = F:\DevSuiteHome_1\jdk\jre\bin\javaw -server -cp "F:\DevSuiteHome_1\j2ee\home\lib\ojsp.jar;F:\DevSuiteHome_1\reports\jlib\rwrun.jar;F:\DevSuiteHome_1\jlib\zrclient.jar" -Duser.language=ar -Duser.region=EG -Xmx256M oracle.reports.engine.RWEngine name=rwEng-0 server=rep_pc1 ORACLE_HOME=F:\DevSuiteHome_1 engineimplclass=oracle.reports.engine.EngineImpl traceopts=trace_all tracefile=F:\DevSuiteHome_1\reports\logs\rep_pc1\rwEng-0.trc tracemode=trace_replace cacheDir=F:\DevSuiteHome_1\reports\cache server_ior=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp_18071221
    [2010/1/20 3:17:17:15] Info 56021 (EngineManager:spawnEngine): Engine rwEng-0 has been launched
    [2010/1/20 3:17:17:15] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Initial
    [2010/1/20 3:17:17:15] Info 56020 (EngineManager:spawnEngine): Launching engine rwURLEng-0
    [2010/1/20 3:17:17:15] Debug 50103 (EngineManager:spawnEngine): Start engine command line = F:\DevSuiteHome_1\jdk\jre\bin\javaw -server -cp "F:\DevSuiteHome_1\j2ee\home\lib\ojsp.jar;F:\DevSuiteHome_1\reports\jlib\rwrun.jar;F:\DevSuiteHome_1\jlib\zrclient.jar" -Duser.language=ar -Duser.region=EG -Xmx256M oracle.reports.engine.RWEngine name=rwURLEng-0 server=rep_pc1 ORACLE_HOME=F:\DevSuiteHome_1 engineimplclass=oracle.reports.urlengine.URLEngineImpl traceopts=trace_all tracefile=F:\DevSuiteHome_1\reports\logs\rep_pc1\rwURLEng-0.trc tracemode=trace_replace cacheDir=F:\DevSuiteHome_1\reports\cache server_ior=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp_20983130
    [2010/1/20 3:17:17:15] Info 56021 (EngineManager:spawnEngine): Engine rwURLEng-0 has been launched
    [2010/1/20 3:17:17:15] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Initial
    [2010/1/20 3:17:17:15] Debug 50103 (JobStore:writePersistFile): Purge persistent file
    [2010/1/20 3:17:17:46] Debug 50103 (JobStore:writePersistFile): Purge persistent file done
    [2010/1/20 3:17:22:187] Warning 50103 (EngineManager:registerEngine): REP-55103: API URLEngine:getEngineEnvsغير قابل للتطبيق على مشغل عنوان URL
    [2010/1/20 3:17:22:187] Info 56026 (EngineManager:registerEngine): Reports Server started up engine rwURLEng-0
    [2010/1/20 3:17:23:687] Debug 50103 (EngineManager:registerEngine): PATH = F:\DevSuiteHome_1\jdk\jre\bin\classic;F:\DevSuiteHome_1\jdk\jre\bin;F:\DevSuiteHome_1\jdk\jre\bin\client;F:\DevSuiteHome_1\jlib;F:\DevSuiteHome_1\bin;F:\DevSuiteHome_1\jre\1.4.2\bin\client;F:\DevSuiteHome_1\jre\1.4.2\bin;F:\oracle\product\10.2.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\
    [2010/1/20 3:17:23:687] Debug 50103 (EngineManager:registerEngine): DISPLAY =
    [2010/1/20 3:17:23:687] Debug 50103 (EngineManager:registerEngine): LD_LIBRARY_PATH =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): ORACLE_HOME = F:\DevSuiteHome_1
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): TNS_ADMIN =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): NLS_LANG = ARABIC_EGYPT.AR8MSWIN1256
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): USER_NLS_LANG =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): RW = F:\DevSuiteHome_1\reports
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): REPORTS_PATH = F:\DevSuiteHome_1\repadm61\srw;F:\DevSuiteHome_1\cgenr61\admin\crretc;F:\DevSuiteHome_1\cgenr61\admin;F:\DevSuiteHome_1\reports\templates;F:\DevSuiteHome_1\reports\samples\demo;F:\DevSuiteHome_1\reports\integ;F:\DevSuiteHome_1\reports\printers;F:\DevSuiteHome_1\reports;e:\GL
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): REPORTS_TMP = C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): REPORTS_TAGLIB_URI = /WEB-INF/lib/reports_tld.jar
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): java.class.path = F:\DevSuiteHome_1\j2ee\home\lib\ojsp.jar;F:\DevSuiteHome_1\reports\jlib\rwrun.jar;F:\DevSuiteHome_1\jlib\zrclient.jar
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): sourceDir =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): tempDir =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): useDataCache =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): ignoreDataParameter =
    [2010/1/20 3:17:23:734] Info 56026 (EngineManager:registerEngine): Reports Server started up engine rwEng-0
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:updateEngineState): Engine rwURLEng-0 status is 1
    [2010/1/20 3:17:23:734] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Ready
    [2010/1/20 3:17:23:734] State 56012 (IdleThread:run): Reports Server جاهز
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 1
    [2010/1/20 3:17:23:734] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Ready

  • Problem in loading oracle 8.1.5

    I have loaded oracle 9.0.1 database on my server successfully.
    since my application is in oracle 8.1.5, I tried to load oracle 8.1.5 but it gives a message saying error occurred during loading with the options of either stoping all components or that component only so If I choose second option that message keeps on coming and eventually installations unsuccessful message comes.
    Pls help

    guys,
    I want to install oracle 8.1.5 on windows 2000 server.
    I have two databases, one in oracle 8.1.5 and another one in oracle 9i so I need to install both versions of oracle software in my system.
    I installed oracle 9i successfully and my database was is also working smoothly on it but when I am trying to install oracle 8.1.5, I am unable to even install oracle software as it says error during loading, then two options one is to quit and another one is to skip some particular compenent and procced ahead. When I choose the second option I keep on getting a message to either quit or skip so eventually I get the message that installation was unsuccessful.
    There is no ora error message.
    Tell me do I need to install Oracle 8.1.5 first and then 9i or I can install them in any order.
    After completing the above task, I also want to install oracle 8.1.7 on the same server as we require to upgrade our database from 8.1.5 to 8.1.7 for the time being.
    I hope now everything is clear!!!! Now Pls help me!!!

  • Problem Compiling JAR Loaded in Oracle 10g

    I have loaded a JAR file into my Oracle 10g database using the following command-line:
    Loadjava -force -oci8 -order -resolve -schema "MYSCHEMA" -user "USER/PASSWORD@HOST" -verbose "JarFile.jar"
    Unfortunately, after loading the JAR contents, the resolution of the individual files never completes. The process runs for >24 hours. Is there a better way to complete this task? I have even tried compiling portions of the JAR file via Toad, but it appears the recursive nature of the dependencies causes the process to essentially hang.
    Unless the JAR files compiles successfully, I can load my Java source code but my resulting Java stored procedures cannot compile because of my import references to the JAR file. My java code was compiled for JDK1.3 using JDeveloper 10.1.3.0.0 to eliminate conflicts with the Oracle JDK (JDK1.4). Is there a setting or a flag which would allow compilation of my source code without compiling the JAR file to utilize the Oracle JIT compiler?
    Any assistance/suggestions would be greatly appreciated. Thank you.

    Avi,
    Thank you for the suggestion. As a result, I found how to load my JAR (iText JAR file) file without decompressing using loadjava -jarasresource MYJAR.jar but now the issue of referrencing this resource within my Java class so that it will compile once loaded into the database. Here is sample of my objects:
    Oracle User-Defined Type:
    CREATE OR REPLACE TYPE schema."BLOB_ARRAY" as varray(20) of BLOB
    Java Source:
    CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED schema."JavaSource" AS
    import com.lowagie.text.Document;
    import com.lowagie.text.pdf.PdfCopy;
    import java.io.ByteArrayOutputStream;
    import java.io.*;
    public class JavaSource{
    public static Document doc;
    public static ByteArrayOutputStream baos = new ByteArrayOutputStream();
    public JavaSource(){}
    public static PdfCopy getDoc(oracle.sql.BLOB[] docs){
    PdfCopy writer = new PdfCopy(doc, baos);
    return writer;
    LOADJAVA:
    loadjava -force -schema "SCHEMA" -user "user/password@sid" -verbose -resolve -unresolvedok -genmissing -jarasresource -genmisingjar "C:\JavaSource.java" "C:\iText.jar"
    Oracle Package:
    CREATE OR REPLACE PACKAGE schema."JavaSource" AS
    FUNCTION getDoc(param1 schema.BLOB_ARRAY) return PdfCopy AS Language Java Name 'JavaSource.getDoc(oracle.sql.BLOB[]) return PdfCopy';
    Oracle Function to query Database populating User-Defined type argument:
    CREATE OR REPLACE FUNCTION schema.TestRun() RETURN schema.BLOB_ARRAY AS
    tmpArray schema.BLOB_ARRAY := null;
    BEGIN
    tmpArray schema.BLOB_ARRAY := BLOB_ARRAY();
    cursor c_blob is select blob_content from schema.doc_table;
    BEGIN
    for blob_rec in c_blob loop
    tmpArray.extend;
    tmpArray(tmpArray.count) := blob_rec.blob_content;
    end loop;
    END;
    return tmpArray;
    END;
    I cannot get my class JavaSource to compile as VALID and therefore the Oracle Function schema.TestRun does not execute properly. Am I missing something? Assistance is greatly appreciated. Thank you.

  • Attempt to load Oracle client libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.

    Hello guys,
                Problem has been solved -
    Attempt to load Oracle client libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.
    1. If you install 64 bit oracle this is not an issue. Install 64 bit oracle.
    2. Download odp.net 32 bit  from below link:-
        ODP.NET Managed Driver Beta Download&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;ODP.NET Managed Driver B…
    3. installed the odp.net.
    4. open the visual studio 2010.
    5.Select new - project - asp.net web application - project name -ok
    6.select tools- > connect to database- then follow the following steps
                             i>  user name - your user name/client username (example -- hr)
                             ii> password -- enter your password/client password  (example- hr)
                            iii>select connection type -- if you want to connect client database then- select EZ connect other wise select tns
                            iv>test the connection- then you will get connection succeed.
                            v> then click ok
    Thanks
    Chandrashekhar

    You do not need to do anything in VS.  You do need to configure both tnsnames.ora files, because the drivers do not share any data.
    Please see:
    http://sqlblog.com/blogs/jorg_klein/archive/2011/06/09/ssis-connect-to-oracle-on-a-64-bit-machine.aspx

  • DBCA fails with java.lang.UnsatisfiedLinkError: Can't load library: /u01/oracle/prod/tech_st/product/11.2.0/db_1/oui/lib/linux/liboraInstaller.so Error in Oracle 11g

    Hi,
    After ORACLE 11G software installation i tried to change the ORACLE_HOME directory.
    OS : RHEL 4.5
    DB : 11.2.0
    Previous Home Location :
    [oracle@localhost ~]$ echo $ORACLE_HOME
    /u01/oracle/prod/tech_st/product/11.2.0/db_1
    Current Home Loc:
    [oracle@localhost ~]$ echo $ORACLE_HOME
    /u01/oracle/db/tech_st/product/11.2.0/db_1
    When i am trying the DBCA command i am getting the below error:
    [oracle@localhost ~]$ dbca
    java.lang.UnsatisfiedLinkError: Can't load library: /u01/oracle/prod/tech_st/product/11.2.0/db_1/oui/lib/linux/liboraInstaller.so
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1650)
            at java.lang.Runtime.load0(Runtime.java:769)
            at java.lang.System.load(System.java:968)
            at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.loadNativeLib(OiipuUnixOps.java:387)
            at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.<clinit>(OiipuUnixOps.java:122)
            at oracle.sysman.oii.oiip.oiipg.OiipgEnvironment.getEnv(OiipgEnvironment.java:201)
            at oracle.sysman.oii.oiip.oiipg.OiipgPropertyLoader.initUnixPtrFileLoc(OiipgPropertyLoader.java:212)
            at oracle.sysman.oii.oiip.oiipg.OiipgPropertyLoader.<clinit>(OiipgPropertyLoader.java:125)
            at oracle.sysman.oii.oiic.OiicStandardInventorySession.updateProperties(OiicStandardInventorySession.java:492)
            at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:266)
            at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:240)
            at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:189)
            at oracle.sysman.assistants.util.InventoryUtil.getOUIInvSession(InventoryUtil.java:346)
            at oracle.sysman.assistants.util.InventoryUtil.getHomeName(InventoryUtil.java:87)
            at oracle.sysman.assistants.util.OracleHome.getInventoryHomeName(OracleHome.java:1023)
            at oracle.sysman.assistants.dbca.backend.Host.<init>(Host.java:798)
            at oracle.sysman.assistants.dbca.ui.UIHost.<init>(UIHost.java:257)
            at oracle.sysman.assistants.dbca.ui.InteractiveHost.<init>(InteractiveHost.java:54)
            at oracle.sysman.assistants.dbca.Dbca.getHost(Dbca.java:164)
            at oracle.sysman.assistants.dbca.Dbca.execute(Dbca.java:112)
            at oracle.sysman.assistants.dbca.Dbca.main(Dbca.java:184)
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no oraInstaller in java.library.path
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
            at java.lang.Runtime.loadLibrary0(Runtime.java:822)
            at java.lang.System.loadLibrary(System.java:993)
            at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.loadNativeLib(OiipuUnixOps.java:405)
            at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.<clinit>(OiipuUnixOps.java:122)
            at oracle.sysman.oii.oiip.oiipg.OiipgEnvironment.getEnv(OiipgEnvironment.java:201)
            at oracle.sysman.oii.oiip.oiipg.OiipgPropertyLoader.initUnixPtrFileLoc(OiipgPropertyLoader.java:212)
            at oracle.sysman.oii.oiip.oiipg.OiipgPropertyLoader.<clinit>(OiipgPropertyLoader.java:125)
            at oracle.sysman.oii.oiic.OiicStandardInventorySession.updateProperties(OiicStandardInventorySession.java:492)
            at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:266)
            at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:240)
            at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:189)
            at oracle.sysman.assistants.util.InventoryUtil.getOUIInvSession(InventoryUtil.java:346)
            at oracle.sysman.assistants.util.InventoryUtil.getHomeName(InventoryUtil.java:87)
            at oracle.sysman.assistants.util.OracleHome.getInventoryHomeName(OracleHome.java:1023)
            at oracle.sysman.assistants.dbca.backend.Host.<init>(Host.java:798)
            at oracle.sysman.assistants.dbca.ui.UIHost.<init>(UIHost.java:257)
            at oracle.sysman.assistants.dbca.ui.InteractiveHost.<init>(InteractiveHost.java:54)
            at oracle.sysman.assistants.dbca.Dbca.getHost(Dbca.java:164)
            at oracle.sysman.assistants.dbca.Dbca.execute(Dbca.java:112)
            at oracle.sysman.assistants.dbca.Dbca.main(Dbca.java:184)
    [oracle@localhost ~]$
    I tried all possible ways with google help but still i am facing the same issue.Kindly check and suggest to solve the issue.
    Thanks in advance.
    Vijay.

    Hi all,
    I give you the clear details about the issue what i am currently facing,
    1. I installed the 11g (11.2.0) database alone(No EBS) in my local vmware machine.
    2. Created my ORACLE_HOME under /u01/oracle/prod/tech_st/product/11.2.0/db_1 directory after that i tried to change my home location from /u01/oracle/prod/tech_st/product/11.2.0/db_1 location to /u01/oracle/db/tech_st/product/11.2.0/db_1 location, like created /u01/oracle/db directory and moved files from /u01/oracle/prod location.
    3. I changed my bash_profile and exported home with the modified location also deregistered an old home and registered the new home.
    4. When i am issuing echo $ORACLE_HOME it is showing the current home location and ORACLE_SID is same what i created before.
    5. But when i am trying to create one more db using DBCA utility it is through the above error.
    Please suggest me is it possible to change the location after db creation or any extra steps i have to do for this issue.
    Thanks.

  • I can not load the Oracle Applications Home Page E-Business Suite

    I install ebs 12.1.1 on windows server 2003 and I can not load the Oracle Applications Home Page (http://ebsoracle.workshop.cl:8000)
    What could be the cause?
    Is there a log with information about this failure?
    I check the host file and this is correct
    Help me please.
    Thanks.

    I install ebs 12.1.1 on windows server 2003 and I can not load the Oracle Applications Home Page (http://ebsoracle.workshop.cl:8000)
    What could be the cause?What is the error?
    Is there a log with information about this failure?
    I check the host file and this is correctCheck Apache log files (error_log* and access_log* under $LOG_HOME/ora/10.1.3/Apache directory).
    Also, run AutoConfig and make sure it completes successfully.
    Thanks,
    Hussein

  • Can SQL*Loader be used for Oracle html pages, for e.g Customer, Tasks etc

    Hi,
    Can SQL*Loader be used for Oracle html pages, for e.g Customer, Tasks etc.
    Reason: We have a job that creates leads, tasks in 11i, but r12 is not working as expected, an SR is open with Oracle for a long time and no solution so far. I am thinking of using SQL*loader to populate the data, but these are html pages. Will SQL* Loader work?
    12.1.4 / 11g db
    Appreciate your inputs.
    Thanks,
    K

    Can SQL*Loader be used for Oracle html pages, for e.g Customer, Tasks etc. It should work.
    Reason: We have a job that creates leads, tasks in 11i, but r12 is not working as expected, What is the issue you have with R12?
    an SR is open with Oracle for a long time and no solution so far. I am thinking of using SQL*loader to populate the data, but these are html pages. Will SQL* Loader work?What was Oracle feedback? Did they say it is certified and can be used?
    Thanks,
    Hussein

  • Problem:I can't get oracle MajorVersion using jdbc in 9.2.0.1.0!

    I can't get oracle MajorVersion using jdbc in 9.2.0.1.0,how can i do and how many oracl version can't get MajorVersion?
    thanks,erveryone! online waiting

    What errors are you getting? Can you post the codew you are using to get MajorVersion.

Maybe you are looking for