Suse linux - oracle 8.1.7 - slow performance

we made some test with linux and oracle 8i and these are the results:
1. 800MHz, EIDE 18GB
import 08:30
copy of file (1x420MB) 03:25
export (dump 28MB) 00:18
2. 400MHz, SCSI ?GB
import 35:00
copy of file (1x420MB) 01:40
export (dump 28MB) 00:43
3. dual-proz, hardware-RAID5
import 36:30
copy (1x420MB) 01:10
export ??:??
can somebody explain this to me. for IDE drives we found out that it's possible to perform them with hdparm. but there exists nothing simillary for scsi drives. i hope anybody can help me. please answer also to [email protected]
thanks in advance.

It's the same binary with OPS included. You'll still need the compat libraries. No big deal though.

Similar Messages

  • OAS 4.0.7 on SUSE Linux 6.1 gets very slow or hangs

    Hallo out there,
    we installed OAS 407 on a SUSE Linux 6.1 system with ORACLE
    Server 8.0.5.0.0. After long time solving installation problems,
    we are now able to start OAS via the OAS-Manager html page.
    And we are able to launch a simple PL/SQL-application, which
    produces the output of a system table. Now, the thing is, that we
    can start this application once or twice or maybe a few times
    more but then the system hangs or gets very slow, so that only a
    hard reboot of the server machine works.
    We configured the NR_TASKS parameter in tasks.h to get ulimit to
    512 for the user processes. System seemed to work better then,
    but maybe only a little bit better.
    We have also got problems with domain-names and node-names, which
    sometimes are just machinename, then machinename.domainname, then
    again machinename.badister.(none) .
    If there is anyone out there who has got the same problems or
    solved them, please tell me.
    Ralf
    null

    I have wasted a lot of time trying to get OAS 4.0.7 to run with
    a 2.2 kernel... it doesn't work, even after you've fixed all the
    problems like to ps command for example, the listeners hang. I
    now have it working on a 2.0 kernel, which is reasonably stable,
    although I have to do a reboot every few days!
    Michael Seiwert (guest) wrote:
    : Hi,
    : I have a problem with installing the OAS 4.0.7 on my SuSE 6.2
    : System. The 8i Database works fine.
    : 1. When I try to start oasctl start & it complains about my ps
    : utils ... Threads not shown etc. ..
    : 2. What have to be done to run the Database Browser in
    : DBUtilities ?
    : Logger Tables, PLSQL Catridge ... are installed!
    : 3. How could I check with a little PL/SQL Application that
    : the OAS works ??
    : 4. I've heard about a patch on "oracle-ftp.oracle.com"
    : /patchset/internet/linux/oas40701-patch..
    : Maybe this patch solves my problems ???
    : I hope someone could help me with my problems!!!
    : Thank you very much!
    : Micha
    null

  • Linux AMD64, JDK 1.5_03: slow performance with large heap

    Tomcat app server running on jdk 1.4.2 on 32 bit Linux configured with mx1750m, ms1750m, runs fast. Returns 2MB of data through HttpServlet in under 30 secs.
    Moving the same app server to 64 bit on jdk 1.5.03 configured with mx13000m, ms10000m, the same request for data takes 5-20 minutes. Not sure why the timing is not consistent. If the app server is configured with mx1750m, ms1750m, performance is about 60 secs or less.
    I checked java settings through jstat. -d64 is the default. Why would increasing the heap cause such slow performance? Physical memory on the box = 32MB.
    It looks like it's definitely java related since a perl app making a http request to the server takes under a minute to run. We moved to 64bit to get around 1.7GB limitation of 32bit Linux but now performance is unacceptable.

    I Aggree, a AMD 64 with only 32 MB of memory would be a very strange beast indeed, heck, my graphics card has 4 times that, and it's not the most up-to-date.
    Keep in mind that switching to 64 does not only mean bigger memory space but also bigger pointers (on the sub-java level) and probably more padding in your memory, which leads to bigger memory consumption which in turn leads to more bus traffic which slows stuff down. This might be a cause for your slowdown, but that should not usually result in a slowdown as sever as the one you noticed.
    Maybe it's also a simple question of a not-yet-completely-optimized JDK for amd64.

  • Oracle 8.1.6, slow performance using XSU

    Hi,
    We have a problem with some queries running in our production environment. When we run them directly through sqlplus they take milliseconds, however when we pass them through our wrapper to the XSU, they can take 5 or 6 seconds to return. The type of query just involves reading data from the database and returning it in XML through the XSU. The wrapper procedure we have written is shown below. Some of the XML we get back can be quite big, hence the check on the return length, but nothing greater than this length will normally be passed through the XSU. We have no issues with indexes etc, as I say the queries run fast if we don't process them through the XSU.
    We beleive that the problems may be exaggerated by the load on the database at any time, and are going to investigate this further in the production environment when we get a chance but at the moment we are a bit stumped.
    Does anyone have an idea why we are experiencing such large overheads when going through the XSU? Is there anything in our wrapper procedure which could add to the delay? Would introducing bind variables into our queries help? Any advice much appreciated.
    PROCEDURE XML_Query(p_SQL IN VARCHAR2,
    p_XML OUT LONG) IS
         v_Context          DBMS_XMLQuery.ctxType;
         v_CLOB      CLOB;
         v_Length          INTEGER;
         v_Buffer          VARCHAR2(2767);
         v_Amount          BINARY_INTEGER := 30000;
         v_Offset          INTEGER := 1;
         e_OutputTooLarge     EXCEPTION;
    BEGIN
         --Get the query context
         v_Context := DBMS_XMLQuery.newContext(p_SQL);
         --v_Context := DBMS_XMLQuery.newContext('SELECT * FROM COLL_SCHEME');
         --Set the date format
         DBMS_XMLQuery.setDateFormat(v_Context,'dd/MM/yyyy hh:mm:ss');
         --Get the XML result
         v_CLOB := DBMS_XMLQuery.getXML(v_Context);
         --Check the length of the result
         v_Length := DBMS_LOB.GETLENGTH(v_CLOB);
         --We currently have a 32767 character limit
         IF v_Length > 32767 THEN
              --Close the context
              DBMS_XMLQuery.closeContext(v_Context);
              --Raise exception
              RAISE e_OutputTooLarge;
         END IF;
         --The first output is always the XML header <?xml version = '1.0'?>
         --We dont want it, so set the Offset to 24 to skip it
         v_Offset := 24;
         --Read the result into the output parameter (max 30000 chars at a time)
         DBMS_LOB.READ(v_CLOB,v_Amount,v_Offset,p_XML);
         --If there is more, get the remaining chars (up to another 2767)
         IF v_Length > 30000 THEN
              v_Amount := 2767;
              DBMS_LOB.READ(v_CLOB,v_Amount,30000,v_Buffer);
              p_XML := p_XML || v_Buffer;
         END IF;
         --Close the context
         DBMS_XMLQuery.closeContext(v_Context);
    EXCEPTION
         WHEN e_OutputTooLarge THEN
              -- Raise the error to the calling process
              RAISE_APPLICATION_ERROR(-20000,'XML output to large. (' || TO_CHAR(v_Length) || ')');
    END XML_Query;

    Thanks Justin. I tried what you suggested. Here's the findings:
    1. increase prefetch count -- did not seem to make a significant difference;
    2. tried MicroSoft ODBC driver -- See to be a little quicker, but still way slower than native SQLnet or Net8;
    3. Use Oracle ODBC test instead of application -- Oracle ODBC test seem to restrict the max row retrieval to 100 rows -- but it still take 10 to 20 seconds, which means for 800 rows it will take the same amount of time. I checked the NT taskmanager, while retieving data there's no CPU consumption.
    4. Installed Oracle to another machine in the same location on NT/wintel box. Response time ODBC vs SQLnet is comparable (50 msec or so) on 200 rows data retrieval. The production database is in DEC alpha machine running NT.
    Based on all these testing, I am still not sure what might have caused the performance problem in production oracle. Any further suggestions?
    null

  • Database is very slow in oracle 9i with Suse Linux

    Hello All,
    We are using Suse linux and installed Oracle 9i on it. Our ERP product is running on this database. It is very slow. But linux configuration seems Ok. Oracle's performance is very slow. But The same thing is working fast in oracle 8.1.6 and 8.1.7. Is there any special linux configuration parameters should we consider for this or we have to do something in init.ora file?. I added the size of the JAVA_POOL_SIZE, SHARED_POOL_SIZE and LARGE_POOL_SIZE to 300 MB each.
    Thanks in advance and expecting your reply.
    with regards,
    sivababu

    Which version of SuSE Linux would possibly help here. I'm using version 7.3 Pro and it is only 10 minutes slower than my installation on XP Pro (the script is 16 pages long and takes 8,000,000 records and converts them into 30,000 records of useful information-takes 20 minutes in XP, 30 minutes in SuSE 7.3 on a personal computer). I used the orarun9i script and followed the directions for re-compiling the genclntsh from the SuSE installations online.

  • Oracle 8i, SuSe Linux, big performance Problem

    Hello,
    i have a very interisting problem on SuSe Linux 7.0 (or 7.1).
    Engine: Fujitsu Siemens Primargy, 4 Processors, 4 GB RAM
    I want to make a hot backup.
    After i set the tablespace in backup mode i make a copy of the tablespace.
    On that moment goes nothing more with Oracle.
    There is no input/output from/to the database. (Every select needs extremly long time)
    Have anybody an idea? (I hope so)
    What is the break?
    Oracle or SuSe Linux? (Any other jobs do the computer all right, very quick)
    Bye and thanks
    Michael
    null

    Hello,
    i forgot to give a very important detail:
    The load average goes from 0.4 up thru 5.X (at that moment i must kill the job)
    sorry that i don't write it in the main letter.
    Bye and thanks for every hint.
    Michael
    null

  • Oracle 8.0.5 & SUSE Linux 6.0

    I am attempting to install Oracle 8.0.5 on SuSE 6.0 Linux but
    receive the following error messages:
    When running oratabs.sh - "GROUPS: read only variable"
    When running orainst - "Permission Denied"
    I have no patches installed on SuSE - do I need any? If so what
    and where are they?
    I would realy appreciate some help as I am not a Linux expert.
    Thanks,
    Mark Warner
    null

    Hi Markus,
    I don't know what exactly getImportedKeys/getExportedKeys do.
    I suppose it's some kind of select on the data dictionary views.
    The reason for the slow performance could be miss-configuration
    of Oracle or a very large number of objects (say more than 20000
    tables).
    I could advice that you check there's nothing else in the SYSTEM
    tablespace than the data dictionary.
    U could use:
    select * from dba_segments where OWNER not in ('SYS','SYSTEM')
    and TABLESPACE_NAME = 'SYSTEM';
    I could recomend that you set shared_pool_size to 100MBytes, and
    db_block_buffers*db_block_size to 100MB.
    Hope this helps,
    Best regards,
    Michael
    P.S. it could help if you publish some of the SQL statements that
    are slow.
    Markus Hoofe (guest) wrote:
    : Hi,
    : Calling getImportedKeys/getExportedKeys on DatabaseMetaData
    : is horribly slow (same applys to getCrossReference). In fact
    : it sometimes returns only after MINUTES.
    : Using setLogStream in DriverManager i extracted the sql
    : statements which the methods created and tried them in sqlplus,
    : but they were painfully slow there as well. Since Oracle made
    : their implementation of the DatabaseMetaData class available,
    : i figured out that all three methods actually use the same
    : subroutine and obviously it is not java's fault.
    : So i wonder, if it's oracle's wrong code or problems with my
    : database.
    : Btw, i am using:
    : + Oracle Server 8.0.5,
    : + SuSE Linux 6.1 (kernel 2.2.5, glibc 2.0.7),
    : + Some nice double 400Mhz PII machine with 512MB that kicks a**
    : Any ideas anyone?
    : CIAO
    : Markus
    null

  • Installation of Oracle EBusiness Suite 11i Release 10.2 on Suse Linux 9

    Hi,
    I have been going thru this forum and got some great tips but am still having problems installing it on Suse Linux Enterprise 9. The reason for failure is at 20% - adrun9i.sh script. Initially it was giving me error while unzipping the files, now it passes that step but gives error while configuring db. I am not sure what the problem is. I have set all the possible kernel parameters. Any help is appreciated?
    Thanks in advance,

    I had the same issue, though I cant remember the percentage anymore, but it was whilst on Database Disk 2.
    What I found out was that the DVD in which that zipXX file was had a CRC error, and the size of the .dbf (I think it was a xxxtx.dbf file) was smaller than expected, cos I manually unzipped this file during a rerun of the installation which finally succeeded. Unfortunately, the DB srung the error after I tried forcing it to mount and open.
    I have now installed the same on SLES9, after I downloaded a fresh set of files from edelivery.oracle.com ( Its a nightmare if you have a slow broadband - Lasted me about 2 weeks, using a download manager)
    You can see the article written by Micheal B on coolnotes in the Novell site, and get in touch if further assistance is needed.
    Good Luck if you havent given up on the idea

  • Oracle 10g Installation Problem on SUSE Linux 10

    Hello Friends,
    I want to install SAP Solution Manager 7.0 with Oracle 10g on SUSE Linux 10.0.
    But, while starting the Installation i am getting following Errors.
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1,
    asianux-2 or SuSE-10
                                          Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2009-04-22_03-59-38PM. Please wait ...
    Error in writing to directory /tmp/OraInstall2009-04-22_03-59-38PM. Please ensure that this directory is
    writable and has atleast 60 MB of disk space. Installation cannot continue.
    : Success
    I have checked the Permissions and the Size of /tmp Directory, which is as followed:
    drwxr-xr-x  11 root root    0 2009-04-22 21:19 sys
    drwxrwxrwt  52 root root 1824 2009-04-22 16:00 tmp
    drwxr-xr-x  15 root root  408 2009-04-19 14:43 usr
    Filesystem           1K-blocks      Used Available Use% Mounted on
    /dev/sda10             2104376     73112   2031264   4% /tmp
    I am starting the Oracle 10g Installation within orasm7 User which is a member of dba, users, disk groups.
    The directories which are created upon starting the Oracle Installation in /tmp directory are having the situations as followed:
    drwxr-xr-x 3 orasm7   dba          128 2009-04-21 18:41 OraInstall2009-04-21_06-41-14PM
    drwxr-xr-x 3 orasm7   dba          128 2009-04-21 18:41 OraInstall2009-04-21_06-41-25PM
    drwxr-xr-x 3 orasm7   dba          128 2009-04-22 15:59 OraInstall2009-04-22_03-59-38PM
    The Oracle Installation log is as follwoed:
    Using paramFile: /home/MyData/51031676/database/install/oraparam.ini
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1, asianux-2 or SuSE-10
                                          Passed
    All installer requirements met.
    The commandline for unzip:
    /home/MyData/51031676/database/install/unzip -qqq ../stage/Components/oracle.swd.jre/1.4.2.0.8
    /1/DataFiles/\*.jar -d /tmp/OraInstall2009-04-22_03-59-38PM
    I have set DISPLAY variable in this way before starting Installation:
    DISPLAY=$HOSTNAME:0.0
    export DISPLAY
    I tried to search the solution over the internet for this kind of problem, but i am not able to find its solution. Even i tried to start the Orale installation using this parameter: ./runInstaller ignoreSysPrereqs, but still it is giving the same unexpected error.
    I have a doubt on File/Directory permissions which are created for Installation in /tmp. The umask setiing of the system is 0022.
    Please, help me for this issue.
    Thanks & Regards,
    Bhavik G. Shroff

    Hi Markus,
    How are you ?
    Thank you very much for your reply.
    I was executing wrong runInstaller file. RUNINSTALLER is right file for starting the execution. But still i am facing the same error, which is as followed.
    Preparing response files. Please wait:
    ======================================
    Working on /home/MyData/51031676/database/SAP/SVRCUSTOM.RSP
    /home/MyData/51031676/database/SAP/SVRCUSTOM.RSP --> /tmp/.orainst_rsp.27450: Done
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1, asianux-2 or SuSE-10
                                          Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /home/orasm7/tmpora/OraInstall2009-04-22_05-25-26PM. Please wait ...
    Error in writing to directory /home/orasm7/tmpora/OraInstall2009-04-22_05-25-26PM. Please ensure that
    this directory is writable and has atleast 60 MB of disk space. Installation cannot continue.
    : Success
    SHROFF:~ # cd /home/orasm7/tmpora/
    SHROFF:/home/orasm7/tmpora # ll
    total 0
    drwxr-xr-x 3 orasm7 dba 128 Apr 22 17:25 OraInstall2009-04-22_05-25-26PM
    SHROFF:/home/orasm7/tmpora # cd OraInstall2009-04-22_05-25-26PM/
    SHROFF:/home/orasm7/tmpora/OraInstall2009-04-22_05-25-26PM # ll
    total 4
    drwxr-xr-x 2 orasm7 dba 304 Apr 22 17:25 images
    -rwxr-xr-x 1 orasm7 dba 504 Apr 22 17:25 installActions2009-04-22_05-25-26PM.log
    SHROFF:/home/orasm7/tmpora/OraInstall2009-04-22_05-25-26PM #
    I have a doubt on tmp_netca_file & tmp_dbca_file variable.
    Please give your suggestion for the same.
    Regards,
    Bhavik G. Shroff
    Edited by: Bhavik G. Shroff on Apr 22, 2009 2:10 PM

  • Installation problem Oracle 9i on SuSE Linux 7.2 s390

    Hi all
    I've got a problem after having installed Oracle9i on a S390 box with SuSE linux 7.2. When I launch sqlplus, I've got the following message :
    sqlplus: error while loading shared libraries: libclntsh.so.9.0: cannot load shared object file: No such file or directory
    It appears the shared library libclntsh.so.9.0 was not included in the tarball I've downloaded from the Oracle site.
    Any idea ?
    Thanks
    Frangois Basquin

    Forget my question : I've found the answer in the document ID 158104.1. Even if my problem was not exactly the one mentioned (I hadn't any problem during compile time), the cure was good.
    Frangois

  • Problem with installing Oracle 10g on Suse Linux

    Hi everybody!
    I downloaded Oracle 10g Express from this url:
    http://www.oracle.com/technology/software/products/database/xe/htdocs/102xelinsoft.html
    it is free version for developers.
    I copied it into computer where was installed Suse Linux Enterprise Edition.
    But when I run it shows this kind of error:
    error: rpmReadSignature failed: region failed: BAD, tag 15872 type 2047 offset 20480 count 4096
    error: oracle-xe-univ-10.2.0.1-1.i386.rpm cannot be installed
    It was downloaded without any problem. But checksum is different from that shown on website. I think this is the problem.
    What is the problem? Does anybody know answer?
    Regards,
    Seti's fiction

    Yes, you appear to have a bad copy.
    I have not had a problem when the check sum matched. Therefore I encourage you to download again.

  • Installation: Oracle 10g on SUSE Linux 10.1

    Can this be? I sat for hours preparing my all new clean SUSE Linux 10.1 server for the installation of Oracle 10g (Standard Edition)... and when running the installer it simply tells me that SUSE 9 is needed...
    I've found others here in the forum having experienced the same.
    Maybe I just downloaded the wrong version of Oracle?
    The main download page is at:
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    I selected entry "Oracle Database 10g Release 2 (10.2.0.1.0) for Linux x86" (the one directly below the Windows version):
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201linuxsoft.html
    The size of the file^^ is 668,734,007 bytes.
    Or should i have downloaded entry "Oracle Database 10g Release 2 (10.2.0.2) for z/Linux":
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10202zlinuxsoft.html
    The size of the file^^ is 838,518,746 bytes.
    By the way, all these versions on the main page should have some kind of description, something like "This is the Linux Version for most standard 32Bit single and multiprocessor Intel compatible servers."
    Well, since I'm completely stuck now with SUSE 10.1, is there any way to make the Oracle installer go on that SUSE version? Maybe SUSE can pretend to be version 9... but how do I achieve something freaky as this?
    Thanks for any help, comments, suggestions...
    Karsten

    BTW, I think it's bad practice by Oracle not supporting SUSE 10.1.Actually, I think it is good practise for Oracle not to certify the public beta versions of an operating system.
    Please remember that Fedora and SuSE Linux are cycled every 6-8 months, making then truly unstable for commercial purposes. IN addition, they are often desupported by the comminuty within 2-3 years, forcing upgrades. And finally, Both Red Hat and SuSE/Novell publically state that these are 'proving grounds for new features' (meaning they are beta).
    Certification means that Oracle will invest heavily and train people on the specific operating system and work with the operating system supplier, 24x7 if needed, to make sure that customers will continue in production. I am not aware that the SuSE Linux or Fedora supporters are willing to put in 24x7 support they way the Red Hat and SuSE Enterprise groups are.
    This does not imply the public OSs are bad. It just means that Oracle (and I) believe they are unsuited for commercial, business mission critical, immediate support required, environments.
    By the way, I have the combination of Oracle10g and SuSE Linux 10.1 working, and it works well. However, I did need to make sure that the libraries to which Oracle10g was compiled are available in the OS.
    Or maybe Sybase does better.... ;-pNot if the [glibc] libraries are incompatible. Nor does PostgreSQL nor MySQL.

  • Unable to install Oracle Developer Suite 10 on SuSe Linux 11.0

    Hi all,
    I have installed Oracle 11g on SuSe Linux 11.0 with no issues. I am unable to install Oracle Developer Suite10.12.02 on same (SuSe 11.0). The installation gets to about 94% and then fails with the following error:
    /usr/lib/libXtst.so.6: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    /usr/lib/libXtst.so.6: undefined reference to `__fprintf_chk@GLIBC_2.3.4'
    /usr/lib/libXtst.so.6: undefined reference to `__sprintf_chk@GLIBC_2.3.4'
    Here's the actual (make failure) log entry:
    gcc -o rwbuilder -L/home/oracle/app/product/11.1.0/ods//lib/ -L/home/oracle/app/product/11.1.0/ods/lib/ -L/home/oracle/app/product/11.1.0/ods/lib//stubs -rdynamic -Bdynamic -L/home/oracle/app/product/11.1.0/ods/jdk/jre/lib/i386 -L/home/oracle/app/product/11.1.0/ods/jdk/jre/lib/i386/server -L/home/oracle/app/product/11.1.0/ods/jdk/jre/lib/i386/native_threads -ljvm rxmasb.o /home/oracle/app/product/11.1.0/ods/reports/lib/ui10.o /home/oracle/app/product/11.1.0/ods/reports/lib/uiicxd.o /home/oracle/app/product/11.1.0/ods/reports/lib/rwsng.o /home/oracle/app/product/11.1.0/ods/reports/lib/rwscl.o /home/oracle/app/product/11.1.0/ods/reports/lib/rwssc.o /home/oracle/app/product/11.1.0/ods/reports/lib/rwssc0.o /home/oracle/app/product/11.1.0/ods/reports/lib/rwsdt.o -lrw /home/oracle/app/product/11.1.0/ods/lib//librw.a -lobx -lnn -lrws -lde /home/oracle/app/product/11.1.0/ods/lib//libzrc.a -lrws -lucol -luicc -lca -lmma -lmmiw -lmmov -lmma -lmmos -lmmoi -lmmia -lmmft -lmmcm -lvgs -luihx -luc -luipr -luimotif -lot -lrem -lree -lrec -luiimg -luimotif -luipr -luiimg -luc -lrem -luimotif -luia -ltknqap -luipr -luimotif -lutt -lix -lixd -lrod -lror -lros -lrod -lror -lros -lrod -luat -ldfc -lutc -lutj -lutl -lutsl -lpls10 -lplp10 /home/oracle/app/product/11.1.0/ods/lib/libplc10.a -lpls10 -lplp10 -lslax10 -lsql10 -lclntsh `cat /home/oracle/app/product/11.1.0/ods/lib/ldflags` -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /home/oracle/app/product/11.1.0/ods/lib/ldflags` -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lmm -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat /home/oracle/app/product/11.1.0/ods/lib/ldflags` -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /home/oracle/app/product/11.1.0/ods/lib/ldflags` -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 -lclient10 -lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat /home/oracle/app/product/11.1.0/ods/lib/sysliblist` -Wl,-rpath,/home/oracle/app/product/11.1.0/ods/lib,-rpath,/home/oracle/app/product/11.1.0/ods/jdk/jre/lib/i386:/lib:/usr/lib -lm `cat /home/oracle/app/product/11.1.0/ods/lib/sysliblist` -ldl -lpthread -lm -L/home/oracle/app/product/11.1.0/ods/lib -L/home/oracle/app/product/11.1.0/ods/lib/stubs/ -lsnls10 -lpthread -ljvm -lhpi -Wl,-rpath,/usr/X11R6/lib -L/usr/X11R6/lib -lXm -lXt -lX11 -lm -lXp -lXext /home/oracle/app/product/11.1.0/ods/lib//librw.a -lnsl
    /usr/lib/libXtst.so.6: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    /usr/lib/libXtst.so.6: undefined reference to `__fprintf_chk@GLIBC_2.3.4'
    /usr/lib/libXtst.so.6: undefined reference to `__sprintf_chk@GLIBC_2.3.4'
    collect2: ld returned 1 exit status
    make: *** [rwbuilder] Error 1
    The only serious flaw I can see in the config is that I'm using libstd++ 4.3 instead of the requested 3.2.2 which 'should' be acceptable as it's a newer version - can anyone help please? Thanks in advance for any helpful advice anyone can offer.
    Richard Foley
    ps. What's also a bit odd, is that the overall exit status of the installation is regarded as succesful...
    *** End of Installation Page***
    The installation of Oracle Developer Suite 10g was successful.
    Edited by: orafoley on Oct 14, 2008 5:19 PM

    Hi Hub,
    Done that, nothing:
    $> env | grep -i LD
    $>
    On the off-chance that it had something to do with installing Oracle 11.0 with ODS Developer 10.0, I've rolled my database installation back too, so now I have:
    Oracle 10.2.01
    Oracle Developer Suite 10i (ODS 10.12.02)
    SuSe 11.0
    Now when I runInstaller I get this, which is surprisingly similar:
    Start output from spawned process:
    rm -f /home/oracle/app/product/10.2.0.1/db/lib//librwu.so; \
    rm -f /home/oracle/app/product/10.2.0.1/db/lib//librw.so
    rm -f rwsutil.o rwspid.o ; \
    /usr/bin/ar x /home/oracle/app/product/10.2.0.1/db/lib//librwu.a rwsutil.o rwspid.o ; \
    (LD_OPTIONS="-z muldefs"; \
    /usr/bin/gcc -o /home/oracle/app/product/10.2.0.1/db/lib//librwu.so -shared -L/home/oracle/app/product/10.2.0.1/db/lib/ -L/home/oracle/app/product/10.2.0.1/db/lib/stubs/ rwsutil.o rwspid.o \
    -lm /home/oracle/app/product/10.2.0.1/db/lib/libclntsh.so -lpthread -Wl,-rpath,/usr/X11R6/lib -L/usr/X11R6/lib -lXm -lXt -lX11 -lm -lXp -lXext `cat /home/oracle/app/product/10.2.0.1/db/lib/sysliblist` -lc )
    rm -f zrhitem.o zrhcursor.o; \
    /usr/bin/ar x /home/oracle/app/product/10.2.0.1/db/lib//librw.a zrhitem.o zrhcursor.o
    rm -f rwbuilder
    gcc -o rwbuilder -L/home/oracle/app/product/10.2.0.1/db//lib/ -L/home/oracle/app/product/10.2.0.1/db/lib/ -L/home/oracle/app/product/10.2.0.1/db/lib//stubs -rdynamic -Bdynamic -L/home/oracle/app/product/10.2.0.1/db/jdk/jre/lib/i386 -L/home/oracle/app/product/10.2.0.1/db/jdk/jre/lib/i386/server -L/home/oracle/app/product/10.2.0.1/db/jdk/jre/lib/i386/native_threads -ljvm rxmasb.o /home/oracle/app/product/10.2.0.1/db/reports/lib/ui10.o /home/oracle/app/product/10.2.0.1/db/reports/lib/uiicxd.o /home/oracle/app/product/10.2.0.1/db/reports/lib/rwsng.o /home/oracle/app/product/10.2.0.1/db/reports/lib/rwscl.o /home/oracle/app/product/10.2.0.1/db/reports/lib/rwssc.o /home/oracle/app/product/10.2.0.1/db/reports/lib/rwssc0.o /home/oracle/app/product/10.2.0.1/db/reports/lib/rwsdt.o -lrw /home/oracle/app/product/10.2.0.1/db/lib//librw.a -lobx -lnn -lrws -lde /home/oracle/app/product/10.2.0.1/db/lib//libzrc.a -lrws -lucol -luicc -lca -lmma -lmmiw -lmmov -lmma -lmmos -lmmoi -lmmia -lmmft -lmmcm -lvgs -luihx -luc -luipr -luimotif -lot -lrem -lree -lrec -luiimg -luimotif -luipr -luiimg -luc -lrem -luimotif -luia -ltknqap -luipr -luimotif -lutt -lix -lixd -lrod -lror -lros -lrod -lror -lros -lrod -luat -ldfc -lutc -lutj -lutl -lutsl -lpls10 -lplp10 /home/oracle/app/product/10.2.0.1/db/lib/libplc10.a -lpls10 -lplp10 -lslax10 -lsql10 -lclntsh `cat /home/oracle/app/product/10.2.0.1/db/lib/ldflags` -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /home/oracle/app/product/10.2.0.1/db/lib/ldflags` -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lmm -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat /home/oracle/app/product/10.2.0.1/db/lib/ldflags` -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /home/oracle/app/product/10.2.0.1/db/lib/ldflags` -lnsslb10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 -lclient10 -lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat /home/oracle/app/product/10.2.0.1/db/lib/sysliblist` -Wl,-rpath,/home/oracle/app/product/10.2.0.1/db/lib,-rpath,/home/oracle/app/product/10.2.0.1/db/jdk/jre/lib/i386:/lib:/usr/lib -lm `cat /home/oracle/app/product/10.2.0.1/db/lib/sysliblist` -ldl -lpthread -lm -L/home/oracle/app/product/10.2.0.1/db/lib -L/home/oracle/app/product/10.2.0.1/db/lib/stubs/ -lsnls10 -lpthread -ljvm -lhpi -Wl,-rpath,/usr/X11R6/lib -L/usr/X11R6/lib -lXm -lXt -lX11 -lm -lXp -lXext /home/oracle/app/product/10.2.0.1/db/lib//librw.a -lnsl
    /usr/lib/libXtst.so.6: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    /usr/lib/libXtst.so.6: undefined reference to `__fprintf_chk@GLIBC_2.3.4'
    /usr/lib/libXtst.so.6: undefined reference to `__sprintf_chk@GLIBC_2.3.4'
    collect2: ld returned 1 exit status
    make: *** [rwbuilder] Error 1
    End output from spawned process.
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'libso_install bld_install proxy_install runm_install server_install cgi_install cli_install conv_install qv_install' of makefile '/home/oracle/app/product/10.2.0.1/db/reports/lib/ins_reports.mk'. See '/opt/oracle/oraInventory/logs/installActions2008-10-30_02-12-25PM.log' for details.
    Richard.

  • Oracle 9i install Errors on SuSE Linux 9

    I am getting a makefile error on ins_rdbms.mk during the initial install of Oracle 9i.
    I've done a grep on make while it is running, and see the command is as follows:
    usr/bin/make -f /usr/local/Oracle/oracleSTM/rdbms/lib/ins_rdbms.mk ioracle ORACLE_HOME=/usr/local/Oracle/oracleSTM
    When I run it manually, I get the following errors:
    hidden symbol `__fixunssfdi' in /usr/lib/gcc-lib/i586-suse-linux/3.3.1/libgcc.a(_fixunssfdi.oS) is referenced by DSO
    collect2: ld returned 1 exit status
    Any suggestions?
    Thanks,
    Sean

    Hello Widya,
    I am glad that you found our documents helpful.
    Did you face any problems while following the document? Was it clear enough? Did the installation go as documented?
    If no, then I would like to hear about them. We can update the document to make it more useful to OTN Users.
    It would be very helpful is you can mention the problems; if any.
    Thanks,
    Rajat

  • Can't install Oracle on SuSE Linux 9.3 Pro

    Hi,
    i try since three weeks to install Oracle 9.2 Release 2. My last Problem was,
    that i didn't know how to log in as the created Oracle User. This Problem is solved.
    But when i install Oracle as the Oracle User and try to configure the Administrator
    Group, i get the error, that i don't have the specific permission to change that,
    so i gave the Oracle User all Rights about every directory (chown oracle:dba / ).
    After that the Installation proceed without any problem, but after the Installation,
    the Database Configuration Assistant failed to install and two other Assistants, too.
    So, i don't know where there problem is. I fulfilled every pre-installation Task, but
    it still isn't possible for me, to install Oracle 9.2 on a SuSE Linux 9.3 Professional
    System.
    If anyone could help me along this Installation, i would be very thankful.
    Thanks a lot
    Daniel

    But when i don't give the oracle user all rights, it isn't possible to proceed with theinstallation
    But if you give that rights then it's a security hole. According to your words I guess you have similar enviroment settings:
    ORACLE_BASE=/
    ORACLE_HOME=/<directory_name>
    Why you not installing on deeper directory such as /opt or some your own directory? For example
    ORACLE_BASE=/myoracledir
    ORACLE_HOME=$ORACLE_BASE/<directory_name>
    Then chown -R oracle:dba /myoracledir.
    Then oracle will be owner just for /myoracle directory and all its subdirectories.
    i just could look at the error details, but they didn't described the erroranyway.
    That's not so true. Error log you could find in /tmp/OraInstallYYYY-MM-DD_HH_MI_SS..

Maybe you are looking for

  • Transform XML and display xsl:message

    Hi, I have a simple method to transform XML. My XSLT has <xsl:message> to help debugging while transforming. How do I access the messages to System.out.printLn? public static Document transformXML(Document xmlDoc, Document xslDoc) throws XMLHelperExc

  • Return asset to vendor

    Hi All, I am trying to return an asset to a vendor but I am not sure how to go about doing it.  I have an asset that was purchased via a PO.  The PO was recieved against and vouchered against.  Also, payment was made for the asset.  Now we want to re

  • Steps for capitalising the AUC to Asset

    Hi Guru's, The user has already made the settlement of the internal order created for AUC (CWIP - Asset under construction). Still the amount is able to see in the AUC. So what would be the reason for the amount lying in the AUC? and what are the det

  • ACLs and editing XML files using OEM

    Hi, How to edit the registered schema file using OEM? I tried, but did not allow to edit. What previliges do a user need to update? In my case, even the user with DBA, XDBADMIN roles can not edit the content of the schema in OEM. Is it possible? In c

  • Separate email accounts for different apple products.

    I have 2 iPads and 2 iPhones in the house how do I make spectate accounts because at the moment they are all linked to one email address?