8i on linux (SUSE 6.2) - unresolved symbol

I'm getting:
sqlplus: error in loading shared libraries:
/home/oracle/product/8.1.5./lib/libclntsh.so.8.0: undefined
symbol: nauzaoss
I installed Oracle 8.i on a fresh install of SUSE 6.2 (glibc 2.1)
and the install of Oracle went fine. The svrmgrl program works
but SQL*Plus (and I suspect other Oracle modules) is reporting
the above error.
I re-installed just the client networking and utilities piece of
Oracle, hoping that a re-link would help, but the problem
persists.
I've been advised that I should install glibc 2.0 and then
download and install the glibc patch from this site, but the only
glibc patch I see is for v8.0.5 and not v8i (8.1.5.0.1). I'm
suspicious that this will not fix my problem - any second
opinions? I've seen other references to this problem, but not a
confirmed solution.
null

Jose Calderon-Celis (guest) wrote:
: I install 8.1.5 Enterprise Edition on Suse 6.1, but an run
: /OraHome1/bin > svrmgrl
: svrmgrl: error in loading shared libraries
: :undefined symbol: __bzero
: Any sugestion?
: Thanks
: [email protected]
Make sure you have $ORACLE_HOME/lib in your LD_LIBRARY_PATH
The symbol __bzero comes from many libraries that are in the
$ORACLE_HOME/lib directory
EXAMPLE: cshell
%setenv LD_LIBRARY_PATH $ORACLE_HOME/lib:/usr/lib:/usr/X11R6/lib
EXAMPLE: bash
bash$ LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib:/usr/X11R6/lib
bash$ export LD_LIBRARY_PATH
You can run an oracle provided script to find symbols that are
unsatisfied.
The script is $ORACLE_HOME/bin/symfind
Here is the syntax for the shell script:
$ORACLE_HOME/bin/symfind __bzero
This will show you the directories of the libraries that contain
the symbols that are undefined.
You can also run symfind with no arguments and it gives you the
arguments you can use.
null

Similar Messages

  • System.LoadLibrary + dlopen -- callback causes unresolved symbol

    Hi guys,
    I am currently trying to use the API
    System.loadLibrary(String name)in order to dynamically link shared libaries to SOLARIS JVM.
    I am facing some unresolved symbol at run-time .
    I load a shared library libhello1 (using system.LoadLibary)
    and I call from this lib (via JNI interface) a method which
    loads a second library libhello2(using dlopen) and invokes hello2().
    hello2 will call back a method hello_bug which is implemented in libhello1.
    There is the a mutual or cyclic dependence. This dependance is correctly handled if I link the libhello1 to a standard C implemented executable.
    But if I load libHello1 via System.Load, the second lib is correctly loaded but the call back is not possible due to unresolved symbol.
    It seems like the symbols are not kept in this case(or the dlopen creates a different thread?...)
    The workaround to fix the issue is to link explicitely libHello1 to libHello2 when building libHello2.
    I don't know if this is clear to everyone so
    I have reproduced this on a very simple case.
    Basicaly, I have implemented in standard C language 2 shared libraries:
    libHelloModule1.so, libHelloModule2.so
    one standard executable and one java interface to call the method
    Below is the full code for reproduce:
    hello1.h:
    #include <dlfcn.h>
    #include <stdlib.h>
    #include <stdio.h>
    #include <iostream>
    #include <jni.h>
    #include "hello_jni.h" [u]//automatically generated by javah -- ref Makefile[/u]
    extern "C"  void hello_bug();
    hello1.cc :#include "hello1.h"
    extern "C" {
    JNIEXPORT void JNICALL Java_com_helloworld_Hello_ShowMessage
      (JNIEnv *, jobject, jstring){
    void *handle;
    const  char *error;
    void  (*init) (void);
    printf(" load Hello2 \n");
    handle = dlopen ("libHelloModule2.so", RTLD_LAZY);
    printf (" lib Hello2 onload.. \n");
    error = dlerror();
    if (!handle) {
          printf ("lib HelloModule2 not loaded correctly %s \n", error);
          exit(1);
       dlerror();
       init =(void(*)())  dlsym(handle, "hello2");
      error = dlerror();
            if(error)
                    fprintf(stderr, "Could not find print_hello(): %s\n",
    error);
                    exit(1);
    (*init)();
        dlclose(handle);
    void hello_bug()
    printf ("Hello bug correctly  invoked : CQFD\n");
    }// extern "C"
    hello2.cc
    #include "hello1.h"
    typedef void  ( *PF1) (char *, char *);
    extern "C" {
    void hello2(){
    printf ("Hello2 : ping Hello1\n");
    /*simple call work in c not via JNI*/
    hello_bug();
    Hello.java :
    package com.helloworld;
    import java.util.*;
    import java.io.*;
    public class Hello  {
      private native void ShowMessage(String msg);
      public void initialized() {
                System.out.println(" ShowMessage - called");
      try {
              ShowMessage("Generated with JNI");
           } catch (Exception e ) {
                e.printStackTrace();         }
      public Hello(){
      System.loadLibrary("HelloModule1");
                System.out.println(" HelloModule1 loaded");
    TestLocal.java :
    import java.util.*;
    import java.io.*;
    import com.helloworld.Hello;
    public class TestLocal{
    public TestLocal(){
            System.out.println("test local");
    public static void main(String[] args) {
            TestLocal test_local = new TestLocal();
            Hello test = new Hello();
            test.initialized();
    }THE MOST IMPORTANT IS IN THE MAKEFILE:
    Makefile :all: Hello.jar hello_jni.h libHelloModule1.so libHelloModule2.so TestLocal.class dummy
    Hello.jar: com/helloworld/Hello.class
    jar cvf $@  com/helloworld
    com/helloworld/Hello.class: Hello.java
    $(JAVAC)  -d . Hello.java
    hello_jni.h: Hello.jar
    $(JAVAH) -jni -o $@ -classpath ./Hello.jar com.helloworld.Hello
    libHelloModule1.so : hello_jni.h hello1.o  
    gcc  -G  -o $@ hello1.o -lstdc++
    libHelloModule2.so : hello2.o
    gcc   -G  -o $@ hello2.o -Wl -lstdc++  -L. -lHelloModule1   [u] # -->CASE  1 :THIS WORKS [/u]
    gcc   -G  -o $@ hello2.o -Wl -lstdc++ [u] #-->CASE 2 :THIS  DOES NOT WORK[/u]
    dummy : dummy_main.o
    gcc  -o $@ dummy_main.o -L. -lHelloModule1 -L/usr/local/lib -lstdc++
    hello2.o : hello2.cc
    gcc -I. -O -c  hello2.cc
    hello1.o : hello1.cc
    gcc -I. -O -c  hello1.cc
    TestLocal.class : TestLocal.java
    $(JAVAC) -classpath  . -d . TestLocal.java
    dummy_main.o :  dummy_main.cc
    gcc -I. -O -c  dummy_main.cc
    clean:
    rm -rf com *.o *.so *.class *.jar hello_jni.h dummyCASE 1 : libHelloModule1.so is explicitely linked to libHelloModule2
    myhost % dummy
    load Hello2
    lib Hello2 onload..
    Hello2 : ping Hello1
    Hello bug correctly invoked : CQFD
    myhost % java -cp . TestLocal
    test local
    HelloModule1 loaded
    ShowMessage - called
    load Hello2
    lib Hello2 onload..
    Hello2 : ping Hello1
    Hello bug correctly invoked : CQFD
    CASE 2 : libHelloModule1.so is not explicitely linked to libHelloModule2
    myhost % dummy
    load Hello2
    lib Hello2 onload..
    Hello2 : ping Hello1
    Hello bug correctly invoked : CQFD
    myhost % java -cp . TestLocal
    test local
    HelloModule1 loaded
    ShowMessage - called
    load Hello2
    lib Hello2 onload..
    lib HelloModule2 not loaded correctly ld.so.1: java: fatal: relocation error: file ./libHelloModule2.so: symbol hello_bug: referenced symbol not found
    My concern is to have this working in CASE1 with the JNI interface the same way it does in standard C built runtime.
    So does any have encountered this?
    Is there something I missed somewhere?
    Thanks lot for your help
    Youss

    Hi,
    I have implemented JNative which seems to be close to your problem.
    It works under Windows and Linux, and loads libraries via dlopen and dlsym.
    You can have a look at it's implementation at http://jnative.cvs.sourceforge.net/jnative/JNativeCpp/
    Don't forget to load your libraries before trying to call them with System.load("/path/to/your/lib.so"); if they are not referenced by LD_LIBRARY_PATH.
    This post may be false since I know nothing about Solaris. Perhaps JNative may be ported under Solaris ?
    --Marc (http://jnative.sf.net)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Error while installing developer 10g on linux suse 10.0

    Hi All,
    This error appears while installing developer 10g on linux suse 10.0
    http://img179.imageshack.us/my.php?image=errorso9.png

    Try locate (using find command for example) the libjvm.so file (I assume that is located somewhere under $ORACLE_HOME (probably jdk or jre directory)). If you locate the path where this library resides, try to add that path to $LD_LIBRARY_PATH enviroment variable.
    Use copy&paste method (for error message) rather than link to image.
    It is much quicker operation and it may help to other people because they be able to find this thread via search engine.

  • XmlSaveDom unresolved symbol, and special characters in output...

    I have a couple of issues with XmlSaveDom() that I'm hoping someone can help with...
    Firstly, under windows I'm having difficulty locating the library that it lives in. I'm linking to:
    oraxml10.lib (from the 10.1.0.2 XDK, the latest version I can find) and oci.lib (from the 10.2 client)...but getting an unresolved symbol on XMLSaveDom().
    I'm using the XDK because under windows I only have a client install which does not appear to have any of the XML headers or libraries in it. I'm using
    10.1.0.2 because it's the latest version I can find to download from technet.
    Secondly, under Solaris I'm just linking to libclntsh.so from 10.1.0.2 server home, and this resolves XMLSaveDom() ok. However when I use XMLSaveDom() I find unusual special characters in the output periodically:
    ÿ¾Ý <SOME_TAG>some_value</SOME_TAG>
    The strange character sequence is always the same.
    Any help with either of these would be greatly appreciated.

    The DOM is not required to escape the characters, so it is correct that you get the literal ampersand characters when you ask the DOM for a getNodeValue().
    When an XML document is serialized -- using, for example, the XMLDocument.print() method -- it is when this external form of the document is produced that escaping occurs.
    You can always call XMLNode.print() to serialize the value of a node and it's children into a PrintWriter that wraps a StringWriter to get the string equivalent of the properly escaped values.

  • Installation mySAP ERP 2005 on Linux SuSe 10

    Hello,
    I tried to install mySAP ERP 2005 on Linux Suse 10 with 8 GB RAM and enough harddisk space (6 x 250 GB) as a central system. But the Installations stops always in the "Import Abap" step with jobs:
    running 3 , wating 22 , completed 13, failed 0 , total 38
    No errors are written to the logfiles and there is no progress in the installation, so I have to stop it manually.
    Can anyone help me?
    regards
    Andreas

    Hi Frank
    Can you please let me know how to get the SAP Solution manager Key that we need to type in during the initial installation?
    Thanks
    Sasi

  • System Requirement for SAP Crystal Server in Linux Suse 11

    have trouble installing CRS 2011 in linux suse 11, need help to share best system requirements to install it.
    the condition is that this server will be use for mirroring database that support oracle 10g.

    Hi Felix,
    Please re-post to the BI Platform space.
    This space is designated for CR Design issues.
    P.S: You may download the Minimum System requirements and other such docs at www.help.sap
    (Choose Analytics > Business Intelligence > Crystal Server)
    -Abhilash

  • Linux suse 10 32位 Oracle 9.2数据库ora-600-[2831], [0]

    linux suse 10 32位 Oracle 9.2数据库ora-600-[2831], [0]
    alert日志如下:
    Errors in file /opt/oracle/admin/test/bdump/test_smon_12102.trc:
    ORA-00600: internal error code, arguments: [2831], [0], [0x0], [0x0], [1], [0], [], []
    Fri Aug 24 11:12:45 2012
    Database Characterset is ZHS16GBK
    Fri Aug 24 11:12:45 2012
    ORACLE Instance test (pid = 8) - Error 600 encountered while recovering transaction (9, 32).
    Fri Aug 24 11:12:45 2012
    trace文件邮件发出
    麻烦大师帮分析下及问题如何处理,ths...

    LOG FINDING:
    /opt/oracle/admin/test/bdump/test_smon_12102.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /opt/oracle/product/10.2.0/db_1
    System name:     Linux
    Node name:     linux-u72z
    Release:     2.6.16.46-0.12-bigsmp
    Version:     #1 SMP Thu May 17 14:00:09 UTC 2007
    Machine:     i686
    Instance name: test
    Redo thread mounted by this instance: 1
    Oracle process number: 8
    Unix process pid: 12102, image: oracle@linux-u72z (SMON)
    *** SERVICE NAME:() 2012-08-24 11:12:44.788
    *** SESSION ID:(549.1) 2012-08-24 11:12:44.788
    *** 2012-08-24 11:12:44.788
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [2831], [0], [0x0], [0x0], [1], [0], [], []
    ----- Call Stack Trace -----
    calling              call     entry                argument values in hex     
    location             type     point                (? means dubious value)    
    ksedst()+27          call     ksedst1()            0 ? 1 ?
    ksedmp()+557         call     ksedst()             0 ? 73000 ? B70893AC ?
                                                       C72D280 ? 3 ? 40C ?
    ksfdmp()+19          call     ksedmp()             3 ? BFDCD5B4 ? AC05B20 ?
                                                       CBC2A40 ? 3 ? CB740C8 ?
    kgeriv()+188         call     00000000             CBC2A40 ? 3 ?
    kgesiv()+118         call     kgeriv()             CBC2A40 ? CC3C8EC ? B0F ? 5 ?
                                                       BFDCD620 ?
    ksesic5()+44         call     kgesiv()             CBC2A40 ? CC3C8EC ? B0F ? 5 ?
                                                       BFDCD620 ? B0F ? 5 ?
                                                       BFDCD620 ?
    kcfonl()+220         call     ksesic5()            B0F ? 0 ? 0 ? 0 ? 2 ? 0 ?
    tbsonl()+24          call     kcfonl()             CC3E0BC ? 0 ? 0 ? 1 ?
                                                       BFDCE7BC ? BFDCDB94 ?
    kcoubk()+131         call     00000000             BFDCDCB4 ? CC3E0A0 ? 1 ? 4 ?
                                                       0 ? BFDCE270 ? BFDCE254 ?
    ktundo()+2426        call     kcoubk()             BFDCE32C ? BFDCDCB4 ?
                                                       CC3E0A0 ? 1 ? 4 ? 0 ?
                                                       BFDCE270 ? BFDCE254 ?
    ktubko()+1299        call     ktundo()             1 ? 80008C ? CC3E09C ? 24 ?
                                                       38 ? BFDCE718 ?
    kturrt()+1820        call     ktubko()             BFDCE718 ? BFDCE708 ? 4 ?
                                                       BFDCE7BC ? BFDCE5C0 ?
                                                       BFDCE700 ?
    kturec()+1832        call     kturrt()             BFDCE7BC ? 20 ? 1 ? 0 ? 11 ?
                                                       4 ? 1 ?
    kturax()+574         call     kturec()             9 ? 0 ? 1 ? 0 ? FFFF ? 11 ?
                                                       4 ?
        SO: 0xb392c810, type: 3, owner: 0xb35c491c, flag: INIT/-/-/0x00
        (call) sess: cur b38fc338, rec b38f2d98, usr b38fc338; depth: 0
          SO: 0xb392d3e0, type: 3, owner: 0xb392c810, flag: INIT/-/-/0x00
          (call) sess: cur b38f2d98, rec b38f2d98, usr b38fc338; depth: 1
          SO: 0xb38f2d98, type: 4, owner: 0xb392c810, flag: INIT/-/-/0x00
          (session) sid: 541 trans: (nil), creator: (nil), flag: (2) -/REC -/-/-/-/-/-
                    DID: 0000-0000-00000000, short-term DID: 0000-0000-00000000
                    txn branch: (nil)
                    oct: 0, prv: 0, sql: (nil), psql: (nil), user: 0/SYS
          temporary object counter: 0
          SO: 0xb39da5e0, type: 5, owner: 0xb392c810, flag: INIT/-/-/0x00
          (enqueue) TX-00090020-0000006B     DID: 0001-0008-00000003
          lv: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  flag: 0x6
          res: b3b571f0, mode: X, prv: b3b571f8, own: b38fc338, sess: b38fc338, proc: b35c491c10.2.0.1.0+ Linux

  • Libraries on Windows to Linux SuSe

    Hi everybody,
    There are a thousand forms which have 4-5 attached libraries. These libraries are located in a library directory C:\LIBS.
    I want to transfer these forms to Linux SuSe environment and libraries as well...
    Except for the compilation and save of the forms and libs , how can I alter 'massively' - if it is possible - the location of the lib directory (let's say from C:\LIBS to /opt/libs).
    I think of two ways:
    1) transforming into xml , make the neccessary modification and return back to fmb
    2) transforming into fmt , make the neccessary modification and return back to fmb (is this possible..?)
    3)which else?
    Which is the quickest way to alter the path of the forms 10.2. on Windows to Linux SuSe?
    Thanks , a lot
    Simon

    Hi Francois,
    I cannot , at least in Windows, convert the .pll files to .plx . Error FRM-91507 : Cannot create the lib and another message PDE-IIN005 : command insert is unknown appear.
    That's why i have installed the .pll into a specific library directory C:\LIBS.
    Then , imagine that i'll make the executable of the libs..
    The files(.fmb) in Linux will still have the 'wrong' path C:\LIBS in their properties , won't they..?
    Unfortunately , anyway i cannot test it right now....
    Thanks a lot for your constant support and ideas....
    Simon

  • Unresolved symbols while linking

    Hello all,
    I'm toying around with oo4o and I'm having a linking problem. I'm working in VS.NET 2003.
    I added the directories for headers, excutables, libraries, etc. At first I had 9 unresolved symbol errors, but I got it down to 2 by remembering to link with oraclm32.lib (debug copy). Not sure why those 2 errors are still there. My test function is basically the first sample in the Help docs, something like this:
         OStartup();
         ODatabase odb("ora9", "username", "passwd");
         ODynaset odyn(odb, "select * from emp");
         double salary;
         while (!odyn.IsEOF())
         odyn.GetFieldValue("sal", &salary);
    odyn.MoveNext();
         OShutdown();
    The relevant parts of the buildlog. Once I added the additional command line option to link with oraclm32, everything resolved except references to OStartup and OShutdown. Seems odd. Any ideas?
    Buildlog:
    Searching libraries
    Searching C:\oracle\ora92\oo4o\CPP\LIB\oraclm32.lib:
    Found "__declspec(dllimport) public: virtual __thiscall ODatabase::~ODatabase(void)" (__imp_??1ODatabase@@UAE@XZ)
    Referenced in Dataconnect.obj
    Loaded oraclm32.lib(ORACLM32.dll)
    Found "__declspec(dllimport) public: virtual __thiscall ODynaset::~ODynaset(void)" (__imp_??1ODynaset@@UAE@XZ)
    Referenced in Dataconnect.obj
    Loaded oraclm32.lib(ORACLM32.dll)
    Found "__declspec(dllimport) public: int __thiscall ODynaset::MoveNext(int)" (__imp_?MoveNext@ODynaset@@QAEHH@Z)
    Referenced in Dataconnect.obj
    Loaded oraclm32.lib(ORACLM32.dll)
    Found "__declspec(dllimport) public: int __thiscall ODynaset::GetFieldValue(char const *,double *)const " (__imp_?GetFieldValue@ODynaset@@QBEHPBDPAN@Z)
    Referenced in Dataconnect.obj
    Loaded oraclm32.lib(ORACLM32.dll)
    Found "__declspec(dllimport) public: int __thiscall ODynaset::IsEOF(void)const " (__imp_?IsEOF@ODynaset@@QBEHXZ)
    Referenced in Dataconnect.obj
    Loaded oraclm32.lib(ORACLM32.dll)
    Found "__declspec(dllimport) public: __thiscall ODynaset::ODynaset(class ODatabase const &,char const *,long,class OSnapshotID *)" (__imp_??0ODynaset@@QAE@ABVODatabase@@PBDJPAVOSnapshotID@@@Z)
    Referenced in Dataconnect.obj
    Loaded oraclm32.lib(ORACLM32.dll)
    Found "__declspec(dllimport) public: __thiscall ODatabase::ODatabase(char const *,char const *,char const *,long)" (__imp_??0ODatabase@@QAE@PBD00J@Z)
    Referenced in Dataconnect.obj
    Loaded oraclm32.lib(ORACLM32.dll)
    SNIP
    Dataconnect.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) void __fastcall OShutdown(void)" (__imp_?OShutdown@@YIXXZ) referenced in function "long __fastcall PostData(char *)" (?PostData@@YIJPAD@Z)
    Dataconnect.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) int __fastcall OStartup(int)" (__imp_?OStartup@@YIHH@Z) referenced in function "long __fastcall PostData(char *)" (?PostData@@YIJPAD@Z)

    Hi Guys,
    I got this error too recently. Was troubling me a lot. I was using Windows 7 OS, Visual Studio 2010 compiler.
    The fix for this is pretty much straight forward and solution lies in the Project settings only.
    To my knowledge, with /MDd switch, it causes the compiler to place the library name MSVCRTD.lib into the .obj file.
    But with /MTd switch, This option just causes the compiler to place the library name LIBCMTD.lib into the .obj file so that the linker will use LIBCMTD.lib to resolve external symbols. For details, please refer to this MSDN article:
    https://msdn.microsoft.com/en-us/library/2kzt1wy3(VS.71).aspx
    Its very useful.
    Also
    MDd stands for Multi-threaded Debug DLL
    MTd stands for Multi-threaded Debug
    Thanks,
    Kiran

  • Unresolved symbol: U_get_previous_frame_x in intermedia

    Hi All
    I am getting the following error while running a test command "exec ctx_output.start_log('log')"
    /usr/lib/dld.sl: Unresolved symbol: U_get_previous_frame_x (code) from /opt/ims
    /oracle/product/RDBMS/8.1.5/ctx/lib/libctxx8.sl
    /usr/lib/dld.sl: Unresolved symbol: U_get_frame_info (code) from /opt/ims/oracl
    e/product/RDBMS/8.1.5/ctx/lib/libctxx8.sl
    BEGIN ctx_output.start_log('log'); END;
    ERROR at line 1:
    ORA-20000: ConText error:
    ORA-06520: PL/SQL: Error loading external library
    ORA-06522: Unresolved external
    ORA-06512: at "CTXSYS.DRUE", line 122
    ORA-06512: at "CTXSYS.CTX_OUTPUT", line 39
    ORA-06512: at line 1.
    Can some body help me on this please.....
    This is very urgent.
    Regards
    UDay
    null

    Hi Tofubug,
    Since I'm not familiar about C#, however, if want to run powershell script in C#, the script below may be helpful for you:
    RunspaceConfiguration runspaceConfiguration = RunspaceConfiguration.Create();
    Runspace runspace = RunspaceFactory.CreateRunspace(runspaceConfiguration);
    runspace.Open();
    RunspaceInvoke scriptInvoker = new RunspaceInvoke(runspace);
    Pipeline pipeline = runspace.CreatePipeline();
    //Here's how you add a new script with arguments
    Command myCommand = new Command(scriptfile);
    CommandParameter testParam = new CommandParameter("key","value");
    myCommand.Parameters.Add(testParam);
    pipeline.Commands.Add(myCommand);
    // Execute PowerShell script
    results = pipeline.Invoke();
    And these threads for your reference:
    Execute PowerShell Script from C# with Commandline Arguments
    How to run PowerShell scripts from C#
    How do you set FullLanguage mode
    for remote PowerShell from C#?
    If I have any misunderstanding, please feel free to let me know.
    Best Regards,
    Anna Wang

  • Sapinst fails in Linux SUSE

    Hi,
    I'm completely new to Linux. Yesterday I installed a Linux Suse 10 and now I wanted to install a Netweaver 7.0 with SR3.
    I installed the Java JDK IBM 1.4.2. and seems ok because comand "java -version" works fine. 
    I have copied the master CD into a file in my Desktop.
    With the terminal I go to the location where I have the sapinst file and when I run the comand "./sapinst" I'm getting the following error
    iaextract.c:439:  Error opening archivefile /root/Desktop/sapcd/BS_2005_SR3_SAP_Installation_Master/IM_LINUX_X86_64/./sapinst
    Anyone has an idea of what could be the reason or where to look in search of clues?
    Any help appreciated and points awarded.
    Thanks,
    Alberto Sabate

    There is also another thing that I don't understand. If I execute sapinst I get the error that I meantioned earlier in the thread.
    However if I execute startinstGui.sh the SAPinst GUI windows appears and the terminal displays:
      Java Runtime found in JAVA_HOME environment variable
      Path: /usr/lib64/jvm/java/bin/java
    Start mode: gui (GUI only)
    Connection parameters:
      GUIServer host: localhost
      GUIServer port: 21212
    Starting...
    <<< frog.jar: version 5.4.5  10/19/05  sap.theme: null >>>
    Unfortunately the sapinstGUI windows also delivers the message
    Could not connect to host localhost on port 21212. java.net.ConnectException: Connection refused
    But again as I said earlier I'm completely new to Linux so most probably there is something obvious that I haven't done.

  • Unresolved symbol : OCIEnvCreate (code)  from libocci.sl.10.1

    I'm getting a core dump, with the error message "Unresolved symbol : OCIEnvCreate (code) from libocci.sl.10.1", when I try to execute a simple OCCI code that connects to the database and performs some SQL queries. It is occuring at the following line :
    Environment *env = Environment::createEnvironment(Environment::DEFAULT);
    I'm using oracle 9i (Ver 9.2.0.6.0) on HP-UX (Ver 11),
    I'm using Oracle Instant Client for HP-UX PA-RISC (32-bit) (Version 10.2.0.2) libraries for OCCI.
    Can anyone help me out?

    I'm using aCC compiler, and doing dynamic linking..I've specified the directory path of the .sl files of the instant client in SHLIB_PATH, do I need to specify the path in ORACLE_HOME, or some other env variable??
    Can you tell me steps that I should follow while compiling, linking & execute the code?

  • Linux suse 10

    Hi,
    within linux suse 10 (i586), how can I call Sqlplus?
    Regards,
    huamin

    Hi,
    It's located in your oracle_home /bin
    If you want to find it:
    find / -name sqlplus 2>/dev/null
    Regards,
    Mario Alcaide
    http://marioalcaide.wordpress.com

  • Problems Installing Designer 6.0 over Oracle 8i (Linux SUSE 8.0)

    I have problems installing Designer 6.0 over Oracle 8i (Linux SUSE 8.0). When I try to create the repository the installation hang up. I try over Oracle 8i (WIndows 2000) and the problems remain.
    Please any body can help?
    Is it possible to install Designer 6i and generate forms 6.0 (I mean for using Developer 6.0 (NOT 6i))?
    Best regards,
    JAGC

    Marcel,
    I had the same problem. Oracle gives as an answer that Designer 6.0 is not supported against 8.1.7. In the specified package a statement is issued which is a problem for 8.1.7. I changed that package and now it works fine.
    Comment as below and replace with the delete statement, then it compiles fines.
    I don't know if any problem can occur after that, but a Migration from a 1.3.2 repository to 6i works fine through this repository. Hope this helps.
    Kind Regards
    Jan Boersma
    Email: [email protected]
    see here:
    -- Remove Reserved Names entry and comment
    -- delete from sdd_reserved_names
    -- where (rn_res_name, rn_type) in ((upper(view_name), 'VIEW')
    -- ,(upper(pack_name), 'PACKAGE')
    -- ,(upper(pack_name), 'PACKAGE BODY')
    -- ,(upper(app_view_name), 'VIEW BODY'));
    delete from sdd_reserved_names
    where ((rn_res_name = UPPER(view_name) AND rn_type = 'VIEW') OR
    (rn_res_name = UPPER(pack_name) AND rn_type = 'PACKAGE') OR
    (rn_res_name = UPPER(pack_name) AND rn_type = 'PACKAGE BODY') OR
    (rn_res_name = UPPER(app_view_name) AND rn_type = 'VIEW BODY'));
    null

  • Unresolved symbol: std::basic_ostream char,std::char_trai ...

    Hi,
    Below is a simple app that I created which demonstrates the mysterious compilation problems that I am seeing. I get the following unresolved symbol :
    Undefined first referenced
    symbol in file
    std::basic_ostream<char,std::char_traits<char> >&std::operator<<(std::basic_ostream<char,std::char_traits<char> >&,const char*) ./libIOTestSD.a(iotest.o)
    std::cout ./libIOTestSD.a(iotest.o)
    [Hint: static member std::cout must be defined in the program]
    I am using workshop 6.1 for comilation. I would appreciate any help on this.
    Thanks in advance.
    Ranga.
    #ifndef COM4
    #include <iostream>
    using namespace std ;
    #else
    #include <iostream.h>
    #endif
    class IOTest {
    public:
    IOTest() ;
    void test(const char* str) ;
    private:
    ostream _os ;
    #include <iotest.hpp>
    IOTest::IOTest()
    _os = &cout ;
    void IOTest::test(const char* str)
    _os << str ;
    #include "iotest.hpp"
    int main(int argc, char** argv)
    IOTest iotest ;
    const char* SAY = "Hello World!!!\n" ;
    iotest.test(SAY) ;
    return 0 ;
    Compilation commands:
    CC -g -pto -mt -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_DEBUG -DDEBUG -KPIC -I. -I../../include -I/opt/ws6.1/SUNWs
    pro/WS6U1/include/CC/Cstd -o iotest.o -c iotest.cpp
    CC -o ./libIOTestSD.a -g -pto -mt -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_DEBUG -DDEBUG -xar iotest.o
    CC -g -pto -mt -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_DEBUG -DDEBUG -KPIC -I. -I../../include -I/opt/ws6.1/SUNWs
    pro/WS6U1/include/CC/Cstd -o testapp.o -c testapp.cpp
    CC -o testapp -g -instances=static -mt +d -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -DUNIX -DUNICODE -D_UNICODE  -D_DEB
    UG -DDEBUG -z text -z defs -G -KPIC testapp.o -Bstatic -lCstd -lCrun -Bstatic -lIOTestSD -Bdynamic -lgen -lm -lw -lcx
    -lc

    This went away when I moved around the libraries on the link line. Some how I was under the impression that order is not important in newer versions of compilers, but whatever it worked... Also I had to remove -z text.
    So, the new compilation command would be
    CC -o testapp -g -instances=static -mt +d -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -DUNIX -DUNICODE -D_UNICODE -D_DEB
    UG -DDEBUG -z defs -G -KPIC testapp.o -Bstatic -lIOTestSD -lCstd -lCrun -Bstatic -Bdynamic -lgen -lm -lw -lcx -lc
    Thanks all,
    Rg

Maybe you are looking for

  • I already have an iPhone 4s, I want to upgrade to the 5. How much is it to upgrade through an apple store?

    I have an iPhone 4s and i want to upgrade to the 5. How much does it cost to upgrade through an apple store while holding an existing plan with optus?

  • IPad and iTunes taking forever to sync out of the blue

    My iPad synced in 'normal' time, just under 10 minutes, yesterday. Today, the syncing is taking forever! Appears that a completely new backup was done, and now it barely moves. I did not download anything to iPad between these syncs. I used it, charg

  • My Ipod's screen doesn't start.

    Hi, I have an Ipod nano 6th generation (with the touch screen) and one day it decided for no reason to not start. First I thought the battery was dead. But after 6 straight hours of recharge from a wall plug, it wouldn't start anyway. I tried to plug

  • How to install JRE in Firefox 24 off line

    In my own PC,I have installed Firefox 24 and jre,and everything goes right. But in a remote machine,which can't connect to Internet. Due to some constraints,I have to move my Firefox 24's file to that machine,not just install it. Everything goes righ

  • Premiere elements 11 won't start

    I downloaded photoshop and premiere lements 11 in 64bit version for windows 7 without problem photoshops runs fine premiere will not start at all. reinstalled and downloaded it again. no action, no error, not vissible in the tasks how to proceed