Problem in intalling weblogic7 platform on linux

hi iam getting problem in intalling weblogic platform7 om suse linux..
the following is the error..
weblogic700_linux.bin
Extracting 0%....................................................................................................100%
** Error during execution, error code = 11.
i will really appreciate if someone can help me out in some way
thanks
surya

Well, if you ran the file directly as is with no arguments, that is
incorrect.
http://e-docs.bea.com/platform/docs70/install/index.html
http://e-docs.bea.com/platform/docs70/install/console.html#1048312
Let us see what jdk version you already have:
$ which java
$ java -version
Thanks,
Wayne Scott
surya prakash palleboina wrote:
hi iam getting problem in intalling weblogic platform7 om suse linux..
the following is the error..
weblogic700_linux.bin
Extracting 0%....................................................................................................100%
** Error during execution, error code = 11.
i will really appreciate if someone can help me out in some way
thanks
surya

Similar Messages

  • Performance problems with jdk 1.5 on Linux plattform

    Performance problems with jdk 1.5 on Linux plattform
    (not tested on Windows, might be the same)
    After refactoring using the new features from java 1.5 I lost
    performance significantly:
    public Vector<unit> units;
    The new code:
    for (unit u: units) u.accumulate();
    runs more than 30% slower than the old code:
    for (int i = 0; i < units.size(); i++) units.elementAt(i).accumulate();
    I expected the opposite.
    Is there any information available that helps?

    Here's the complete benchmark code I used:package test;
    import java.text.NumberFormat;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.Vector;
    public class IterationPerformanceTest {
         private int m_size;
         public IterationPerformanceTest(int size) {
              m_size = size;
         public long getArrayForLoopDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testArray[index]);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayForEachDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testArray) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForLoopDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForEachDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListIteratorDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForLoopDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForEachDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListIteratorDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForLoopDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testVector.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForEachDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testVector) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorIteratorDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testVector.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
          * @param args
         public static void main(String[] args) {
              IterationPerformanceTest test = new IterationPerformanceTest(1000000);
              System.out.println("\n\nRESULTS:");
              long arrayForLoop = test.getArrayForLoopDuration();
              long arrayForEach = test.getArrayForEachDuration();
              long arrayListForLoop = test.getArrayListForLoopDuration();
              long arrayListForEach = test.getArrayListForEachDuration();
              long arrayListIterator = test.getArrayListIteratorDuration();
    //          long linkedListForLoop = test.getLinkedListForLoopDuration();
              long linkedListForEach = test.getLinkedListForEachDuration();
              long linkedListIterator = test.getLinkedListIteratorDuration();
              long vectorForLoop = test.getVectorForLoopDuration();
              long vectorForEach = test.getVectorForEachDuration();
              long vectorIterator = test.getVectorIteratorDuration();
              System.out.println("Array      for-loop: " + getPercentage(arrayForLoop, arrayForLoop) + "% ("+getDuration(arrayForLoop)+" sec)");
              System.out.println("Array      for-each: " + getPercentage(arrayForLoop, arrayForEach) + "% ("+getDuration(arrayForEach)+" sec)");
              System.out.println("ArrayList  for-loop: " + getPercentage(arrayForLoop, arrayListForLoop) + "% ("+getDuration(arrayListForLoop)+" sec)");
              System.out.println("ArrayList  for-each: " + getPercentage(arrayForLoop, arrayListForEach) + "% ("+getDuration(arrayListForEach)+" sec)");
              System.out.println("ArrayList  iterator: " + getPercentage(arrayForLoop, arrayListIterator) + "% ("+getDuration(arrayListIterator)+" sec)");
    //          System.out.println("LinkedList for-loop: " + getPercentage(arrayForLoop, linkedListForLoop) + "% ("+getDuration(linkedListForLoop)+" sec)");
              System.out.println("LinkedList for-each: " + getPercentage(arrayForLoop, linkedListForEach) + "% ("+getDuration(linkedListForEach)+" sec)");
              System.out.println("LinkedList iterator: " + getPercentage(arrayForLoop, linkedListIterator) + "% ("+getDuration(linkedListIterator)+" sec)");
              System.out.println("Vector     for-loop: " + getPercentage(arrayForLoop, vectorForLoop) + "% ("+getDuration(vectorForLoop)+" sec)");
              System.out.println("Vector     for-each: " + getPercentage(arrayForLoop, vectorForEach) + "% ("+getDuration(vectorForEach)+" sec)");
              System.out.println("Vector     iterator: " + getPercentage(arrayForLoop, vectorIterator) + "% ("+getDuration(vectorIterator)+" sec)");
         private static NumberFormat percentageFormat = NumberFormat.getInstance();
         static {
              percentageFormat.setMinimumIntegerDigits(3);
              percentageFormat.setMaximumIntegerDigits(3);
              percentageFormat.setMinimumFractionDigits(2);
              percentageFormat.setMaximumFractionDigits(2);
         private static String getPercentage(long base, long value) {
              double result = (double) value / (double) base;
              return percentageFormat.format(result * 100.0);
         private static NumberFormat durationFormat = NumberFormat.getInstance();
         static {
              durationFormat.setMinimumIntegerDigits(1);
              durationFormat.setMaximumIntegerDigits(1);
              durationFormat.setMinimumFractionDigits(4);
              durationFormat.setMaximumFractionDigits(4);
         private static String getDuration(long nanos) {
              double result = (double)nanos / (double)1000000000;
              return durationFormat.format(result);
    }

  • The Install problem 10.1.0.3 on linux itanium

    hi.
    I met the installation problem 10.1.0.3 on linux itanium due to ntcontab.o.
    When I stoped and restarted the installation (too many times!), it break in the same point... (99%)
    The log file produced:
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/oracle/rm -f ntcontab.*
    (if [ "compile" = "compile" ] ; then \
    /oracle/bin/gennttab > ntcontab.c ;\
    /usr/bin/gcc -c ntcontab.c ;\
    rm -f /oracle/lib/ntcontab.o ;\
    mv ntcontab.o /oracle/lib/ ;\
    /usr/bin/ar rv /oracle/lib/libn10.a /oracle/lib/ntcontab.o ; fi)
    ntcontab.c:7:23: sys/types.h: No such file or directory
    mv: cannot stat `ntcontab.o': No such file or directory
    /usr/bin/ar: /oracle/lib/ntcontab.o: No such file or directory
    make: *** [ntcontab.o] Error 1
    at present
    gcc version: 3.4
    g++ version: 3.4
    any hints?
    thanks

    Thanks for your answer.
    cpu information:
    oracle@dr_re_01d:/etc> cat redhat-release
    Red Hat Enterprise Linux AS release 4 (Nahant Update 4)
    processor : 0
    vendor : GenuineIntel
    arch : IA-64
    family : 32
    model : 0
    revision : 7
    archrev : 0
    features : branchlong, 16-byte atomic ops
    cpu number : 0
    cpu regs : 4
    cpu MHz : 1598.002498
    itc MHz : 400.000000
    BogoMIPS : 32614.90
    siblings : 1
    processor : 1
    vendor : GenuineIntel
    arch : IA-64
    family : 32
    model : 0
    revision : 7
    archrev : 0
    features : branchlong, 16-byte atomic ops
    cpu number : 0
    cpu regs : 4
    cpu MHz : 1598.002498
    itc MHz : 400.000000
    BogoMIPS : 10.48
    siblings : 1
    processor : 2
    vendor : GenuineIntel
    arch : IA-64
    family : 32
    model : 0
    revision : 7
    archrev : 0
    features : branchlong, 16-byte atomic ops
    cpu number : 0
    cpu regs : 4
    cpu MHz : 1598.002498
    itc MHz : 400.000000
    BogoMIPS : 8.38
    siblings : 1
    processor : 3
    vendor : GenuineIntel
    arch : IA-64
    family : 32
    model : 0
    revision : 7
    archrev : 0
    features : branchlong, 16-byte atomic ops
    cpu number : 0
    cpu regs : 4
    cpu MHz : 1598.002498
    itc MHz : 400.000000
    BogoMIPS : 8.38
    siblings : 1
    I don't have the patch list for 10r1, rh4 ( it can't find in metalink).
    so, I am processing in reference to the patch list for 10r1, rh3.
    I passed a part of ntcontab.o error, now.
    I received two new message about O.S patch: ultra search and EM
    thanks

  • Problem with executing shell script on linux through java code.

    i am facing problem to kill jboss process on linux that is my application requirement. for that i created one shell script that will get all the process for jboss instance and kill them when i am running that script from command prompt on linux its working perfectly.
    The command i am using ---
    /opt/RW9/jboss/v4.0.5.GA/bin/restartjboss.sh.
    but when i am running through java code its not working.
    the java code i am using is:-
    pp = Runtime.getRuntime().exec(new String[]{"/bin/sh", "-c", "/opt/RW9/jboss/v4.0.5.GA/bin/restartjboss.sh"});
    could anyone tell me what is the problem ?
    Edited by: akm198110 on Sep 2, 2008 9:24 AM

    I got the problem after long struggle ,after doing proper path i am able to execute the shell script..

  • Problem of executing a process under Linux using Runtime.exec

    Hi, All
    I am having a problem of executing a process under Linux and looking for help.
    I have a simple C program, which just opens a listening port, accept connection request and receive data. What I did is:
    1. I create a script to start this C program
    2. I write a simple java application using Runtime.exec to execute this script
    I can see this C program is started, and it is doing what it supposed to do, opening a listening port, accepting connection request from client and receiving data from client. But if I stop the Java application, then this C program will die when any incoming data or connection request happens. There is nothing wrong with the C program and the script, because if I manually execute this script, everying works fine.
    I am using jre1.4.2_07 and running under Linux fedora 3.0.
    Then I tried similar thing under Windows XP with service pack2, evrything works OK, the C program doesn't die at all.

    Mind reading is not an exact science but I bet that you are not processing either the process stdout or the stderr stream properly. Have you read http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html ?

  • Problem when moving our app to Linux platform

    Hi to all,
    My app uses Java swings which will work only on windows (platform dependent).
    We used Windows LookandFeel and font for labels as Arial, Tahoma... and set the size for each component according to the windows look and feel, while we developed our app.
    If we change the look and feel to Metal look and feel, labels will not be displayed fully. (Instead of displaying the label as Observation, it displays Observ...). Everywhere in the view, we were facing this problem if we change the look and fell.
    Now we are trying to make our app to be platform independent for which we are working with Linux.
    While working with linux, there is no windows look and feel and no font called Tahoma or Arial.
    Because no font called Arial or Tahoma exist and there is no windows look and feel, Instead of displaying the label as Experimenting, it is displaying as Experim..... This problem occurs everywhere in my apps.
    Also wherever we used Labels in the classes (nearly some 150 class), we specified the font as Tahoma.
    Is there any alternative in Java like Macros (Preprocessor) in C, so that wherever we used the word Tahoma, everywhere it will be changed, if i change it in one place.
    Thanks in advance.

    Bala wrote:
    But how to make the components fully visible and avoid the above problem, even if we change different look and feel and runs on different platforms?IMO: the only real way is to use a cross-platform look & feel so the app looks the same on all environments - it doesn't have to be a built-in one, there are plenty of cool look & feels to be found on the net. In any other case its the same as developing a website: where you would have to create CSS and test it under each browser that you want to support, in the case of Swing you have to create the GUI with system look & feel and test it under every environment that you want to support; tinker and adjust until it works everywhere.
    Another option which is even more of an overhaul is to build on top of the Netbeans platform, which is designed to display correctly in Windows, Mac and Linux (although you can probably still screw it up if you're not careful) and also gives you access to advanced features such as docking windows.

  • Problem while intalling oracle 11i(11.5.9) on Redhat Enterprise Linux 3

    Dear all,
    we are installing oracle 11i ( 11.5.9) one Redhat Enterprise Linux 3
    it gives the following error massage .
    Error code received when running external process.check the log file for details._
    Running Database Install Driver for PROP instance._
    Please any suggestion.
    Thanks

    Hi,
    This is a generic error, so please check the installation log files for more details about the error.
    Regards,
    Hussein

  • Problems installing a platform in Linux Mandrake... HELP URGENT!!

    Hi all.
    I am new to ATG 5.6 (as developer) and can't get it started. Need help
    ASAP!
    Environment:
    Mandrake Linux 8.1 (2.4.8-26)
    ATG 5.6
    When running ./startDynamo (sh script):
    java.lang.NullPointerException
    at atg.applauncher.AppLauncher.getMainClass(AppLauncher.java:421)
    at atg.applauncher.AppLauncher.getMainMethod(AppLauncher.java:438)
    at atg.applauncher.AppLauncher.launch(AppLauncher.java:596)
    at atg.applauncher.dynamo.DynamoServerLauncher.main
    (DynamoServerLauncher.java :149)
    error happens at line 103 of <D5dir>/home/bin/dynamoEnv.sh
    What's wrong??
    Infinite Thx in advance
    Bernardo

    You need to start it with something akin to:
    bin/startDynamo <servername> -l -m <Components>
    ie.
    bin/startDynamo appa0 -l -m DCS DPS DSS B2CCommerce CustSvc
    Expect to have do some work to get it up. Also, this is all in the
    Gettin Started manuals...

  • Keyboard Problem while running Swing App on LINUX

    Hi All,
    We have a Swing based Application running on Windows Platform. We need to run the Application on LINUX. The Application does not have any problem and runs without problems for a few minutes but after that the keyboard stops to respond inside the application. Keyboard runs fine outside the application but no key events are recognized inside the application. Mouse is working fine even after the keyboard stops responding.
    Key Points:
    �     The keyboard is a PS/2 keyboard.
    �     Read Hat Fedora 5.0 is being used.
    �     The problems occur on both KDE and GNONE.
    �     The Java Version is jdk1.5.0_09
    The application is data entry application using EJB at server side. The client UI has lot of JTables and Desktop Panes/ Internal Frames. User use ctrl+tab, ctrl+shift+tab, tab, shift+tab, and other hot keys to navigate between Components. Listeners on keyboard Focus Owner are also used. We are unable to diagnose the problem because of the undeterminable nature of the problem. The problem occurs at anytime and does not occur on any special key/ combinations press.
    Thanks and Regards,
    Nishant Saini
    http://www.simplyjava.com

    I've just installed the JDK 1.4 on my debian box. I
    can compile and run a basic Hello World app using
    System.println, but when I try to run a simple swing
    app, I get an error like:
    Exception in thread "main"
    java.lang.NoClassDefFoundError
    at java.lang.Class.forName0(Native Method)
    at java.lang.... etc, etc.
    It goes on with about 30 different classes. It
    compiles fine, with no errors, but when it comes time
    to run, that's what I get. This is what I have in my
    .bash_profile as far as environment variables go:
    export JAVA_HOME="/usr/local/j2sdk1.4.1_01"
    export PATH="$JAVA_HOME/BIN:$PATH"
    export
    CLASSPATH="$JAVA_HOME/jre/lib/:$JAVA_HOME/lib:."The code works fine in Windows, so unless there's
    something platform-specific, I don't think there's a
    problem there. I've checked to make sure I'm not
    running kaffe by accident and I'm definitely running
    the right java and javac. I'm out of ideas. Any
    suggestions would be greatly appreciated.
    -dudley
    I may just be crazy, but your PATH looks a little screwy to me. I was under the impression that the standard java installation has its executables in the 'bin' directory, not the 'BIN' directory. Unless Debian has fallen to the evil empire, then I'm fairly sure file names are case-sensitive. I don't know if that will fix your problem though. Do you compile from the command line, or do you use an IDE???

  • How to run 10g forms developed on win XP platform from linux based App serv

    dear all,
    I am developing 10g forms being on widows XP platform. I have also used
    both pl/sql and object libraries to develop them.
    Now what i have to do to make these forms work from a 10g application server
    that is installed on linux 4

    thanks for ur reply.
    the problem i am facing now is
    I used to use a specific path in the forms where the
    libs are located.
    but in linux path location identification is different from wins.
    i tried with remove path as well still it can not read the libs.
    waitin for ur reply

  • Problems with BouncyCastle security provider on Linux

    Hi!
    I'm using BouncyCastle security provider which is supplied by vendor as a signed jar.
    I haven't any problems while using it on Windows.
    But I have some problems on Linux platform.
    This code:
    Cipher cipher = Cipher.getInstance(SOME_ASSYM_ALGORITHM, "BC");
    throws an exception:
    java.lang.SecurityException: The provider BC may not be signed by a trusted party
    at javax.crypto.SunJCE_b.a(DashoA12275)
    at javax.crypto.Cipher.a(DashoA12275)
    at javax.crypto.Cipher.getInstance(DashoA12275)
    But security provider jar is signed!
    May be a reason of this exception is something else?
    Has anybody faced with such problem?
    I'm using Java 2 SDK, Standard Edition 1.4.2_10.
    Thanks in advance,
    Alex.

    Has anybody faced with such problem?I used bouncycastle for the first time yesterday without issue.
    (sorry, I can't help)

  • Problem building Client JVM on RedHat Linux 7.1

    Hi :)
    I am trying to build the client VM on RedHat Linux 7.1. I have religiously followed all the pre-requirements, making sure that I meet them all.
    Nevertheless, I get a bunch of error messages. They are divided into two categories:
    - "cannot convert int * to socklen_t * in various methods in the file src/os/linux/vm/hpi_linux.hpp
    - "class blah is implicitly friends with itself"; this one happens in various souce files, e.g. /share/vm/ci/ciObject.hpp
    Any ideas?
    Thanx :)
    Nikitas

    nikitas25 posted a message on March 17, 2002, about trying to build the HotSpot client on a RedHat 7.1 box and receiving a number of errors about:
    - "cannot convert int * to socklen_t *"
    - "class <blah> is implicitly friends with itself"
    I've been trying to build HotSpot 2.0 client on RedHat 7.3 and getting the same error messages starting with this file: src/share/vm/runtime/classLoader.cpp
    In function `int hpi::accept (int, sockaddr *, int *)':
    ....src/os/linux/vm/hpi_linux.hpp:84:
    cannot convert `int *' to `socklen_t *' for argument `3' to
    `accept (int, sockaddr *, socklen_t *)'
    In file included from ../generated/incls/_classLoader.cpp.incl:169,
    from ..../src/share/vm/runtime/classLoader.cpp:18:
    ....share/vm/ci/ciTypeArrayKlassKlass.hpp:22: class `ciTypeArrayKlassKlass' is
    implicitly friends with itself
    Has anybody else experienced this problem? If so, what did you do to fix it?
    I've tried with gcc-2.96-110 and gcc-3.1.1 along with jdk-1.3.1 and j2sdk-1.4.0 and no combination of the compilers works.
    Jeff

  • Problem while installing oracle 10g on linux fedora 9 (suphur)

    fallied to check sistem operating
    is not found in the log of this session in / tmp/orainstall2008-8-21_03-34-55pm/installactions2008-08-21_03-34-55PM.log
    some can help me about this please.
    thanks

    Actually that Linux version is not supported for 10g. You may try starting the installer as
    $ ./runInstaller -ignoreSysPrereqs
    BTW, not sure you won't have any problems afterwards, but it should work.

  • Problems with non-ASCII characters on Linux Unit Test Import

    I found a problem with non-ASCII characters in the Unit Test Import for Linux.  This problem does not appear in the Unit Test Import for Windows.
    I have attached a Unit Test export called PROC1.XML  It tests a procedure that is included in another attachment called PROC1.txt. The unit test includes 2 implementations.  Both implementations pass non-ASCII characters to the procedure and return them unchanged.
    In Linux, the unit test import will change the non-ASCII characters in the XML file to xFFFD. If I copy/paste the the non-ASCII characters into the Unit Test after the import, they will be stored and executed correctly.
    Amazon Ubuntu 3.13.0-45-generic / lubuntu-core
    Oracle 11g Express Edition - AL32UTF8
    SQL*Developer 4.0.3.16 Build MAIN-16.84
    Java(TM) SE Runtime Environment (build 1.7.0_76-b13)
    Java HotSpot(TM) 64-Bit Server VM (build 24.76-b04, mixed mode)
    In Windows, the unit test will import the non-ASCII characters unchanged from the XML file.
    Windows 7 Home Premium, Service Pack 1
    Oracle 11g Express Edition - AL32UTF8
    SQL*Developer 4.0.3.16 Build MAIN-16.84
    Java(TM) SE Runtime Environment (build 1.8.0_31-b13)
    Java HotSpot(TM) 64-Bit Server VM (build 25.31-b07, mixed mode)
    If SQL*Developer is coded the same between Windows and Linux, The JVM must be causing the problem.

    Set the System property "mail.mime.decodeparameters" to "true" to enable the RFC 2231 support.
    See the javadocs for the javax.mail.internet package for the list of properties.
    Yes, the FAQ entry should contain those details as well.

  • Problem:Oracle Pro*c Precompiler on Linux

    Hi,
    PLEASE HELP!!!!
    Regards
    Bhagat Singh
    Before discussing all these issue I want to inform u that this code is running code in sun solaris means it compiles cleanly and runs without flaws or error and results are to the mark.
    But in linux first of all it does not compiles if it compiles then it does not produce the right/desired results .
    1.ora erro 1008
    2.ora errno 1438
    3.ora errno 1403
    Information is there in database but update is not working and returning code 1403
    if it is working then also the message is "no data found".
    Pl/Sql block is being used in the Pro*c code so we have made SQLCHECK = SEMANTICS then also it is not working.
    When we use math.h then also it does not compiles at all and falters out.
    When I update the database it does not updates may there be relevant information present in the database, but if i do select count(*) into :variable from the same table then it updates else it fails to do so they all are peculiar issues.
    Some times it says parent record not found in the master whereas it very exists over there.
    Some times core dump if I define two dimensional char pointer array of 10000 size it results in core dump
    say char_ptr[300][10000] .
    Some functions in the program return char pointer there also it is giving and error where and I am collecting the information from the return variable through string copying and it is having clear cut definition in header files for the return type of that function this is working very well in sun but I fail to understand about linux.
    operating systems details
    =====================
    Linux Details
    ===========
    Linux=Red Hat Release 6.2 (Zoot), Kernel 2.2.14-12 on an i686
    Oracle 8 i=Release 2 Version 8.1.6
    Proc Compiler= Release 8.1.6.0.0
    Sun Details
    ==========
    SunOS blrgps 5.6 Generic sun4u sparc SUNW,Ultra-1
    Oracle 8=Release 8.0.3.0.0
    Proc Compiler= Release 8.0.3.0.0
    .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
    . ~/.bashrc
    fi
    # User specific environment and startup programs
    PATH=.:$PATH:$HOME/bin:/opt/oracle/OraHome1/bin:/usr/bin:/bin:/usr/local/bin:/opt/oracle/OraHome1/bin:/usr/sbin
    :/opt/oracle/OraHome1/precomp/lib:/usr/include:/usr/lib
    BASH_ENV=$HOME/.bashrc
    USERNAME=""
    ORACLE_HOME=/opt/oracle/OraHome1
    ORACLE_SID=telecom
    ORACLE_OWNER=oracle
    EPC_DISABLED=TRUE
    LD_LIBRARY_PATH=/opt/oracle/OraHome1/lib
    export USERNAME BASH_ENV PATH ORACLE_HOME ORACLE_SID ORACLE_OWNER LD_LIBRARY_PATH
    NLS_LANG=american; export NLS_LANG
    null

    I have very similar problems, all of which I have been able to work around, except for the very serious defect where the executed code returns bizarre errors like no data found for a query like:
    EXEC SQL SELECT sum(X) INTO :var FROM table;
    These same programs were working just fine under Oracle 8.0.5 on Solaris/Intel 2.6 w/ gcc 2.7.2p.
    My configuration is RedHat 6.2 / Kernel 2.2.14-6.1.1smp / gcc egcs-2.91.66 (release 1.1.2) / glibc 2.1.3-15
    Note: Pro*C 8.1.6 for Linux does come with some alternate system header files in $ORACLE_HOME/proc/syshdr. This should fix your math.h problem if you place that directory early in your include path.

Maybe you are looking for

  • Resetting a computer

    Is there a way to restore your computer to the way it was when it was bought? I bought it in April of this year. Im having blue screens and I don't no how to fix it!

  • Split PDF - read-only error

    I am trying to split a PDF document on the top level bookmarks that I have created. I created all of the bookmarks using the file name that I want to output. I go to document, split document, select Top-level bookmarks and output options and select u

  • Cannot scan to PDF in Adobe Reader XI

    IN adobe reader X there were many "Create" menu items, including Create PDF from Scanner -- now in Adobe Reader XI there is only Create PDF online and all the instructions as to how to scan give the directions for how it was done in Adobe X even tho

  • Will the FDR-AX100 ever support 4k external monitoring?

    I had plans to hook this up to my Atmos.  This is so very dissappointing.  We may have to send this camera back. MMance

  • MapViewer 11g over https - how ?!?

    Hi, anyone able to access mapviewer 11 g deployed on standalone OC4J 10.1.3.4 over Https ? Namelly, the following link works: https://localhost/mapviewer/ _but, going on the 'Demos' tab, and clicking on the 'maps and faces' link ( https://localhost/m