Oracle 8.1.7 ProC and RedHat 7.2

I found this answer in Metalink for a similar issue with
Mandrake. Anyhow, I thought I'd pass it on.
Apparently Oracle817 does not ship with a good pcscfg.cfg for
RH 7.2. As a result you need to create one to use with RH 7.2
The order of what lies within the pcscfg.cfg is very
significant. I had first copied the bottom one from Metalink
and although it got me past all of the compile errors
concerning the 'header' files, it still would not work.
This one works (sys_include has to be on one line for real):
sys_include=($ORACLE_HOME/precomp/public,
/usr/include,
/usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include)
include=($ORACLE_HOME/precomp/public)
include=($ORACLE_HOME/rdbms/demo)
include=($ORACLE_HOME/network/public)
include=($ORACLE_HOME/plsql/public)
include=($ORACLE_HOME/otrace/public)
This one basically causes ProC to eat all available memory and
swap and finally get killed by Linux. This one came from
Metalink as well. Although it is basically the same as the one
above, the order of the directories for 'sys_include' are
different. For my system, this is significant.
sys_include=($ORACLE_HOME/precomp/public,
/usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include,
/usr/include)
include=($ORACLE_HOME/precomp/public)
include=($ORACLE_HOME/rdbms/demo)
include=($ORACLE_HOME/network/public)
include=($ORACLE_HOME/plsql/public)
I hope this helps.
tom

I found this answer in Metalink for a similar issue with
Mandrake. Anyhow, I thought I'd pass it on.
Apparently Oracle817 does not ship with a good pcscfg.cfg for
RH 7.2. As a result you need to create one to use with RH 7.2
The order of what lies within the pcscfg.cfg is very
significant. I had first copied the bottom one from Metalink
and although it got me past all of the compile errors
concerning the 'header' files, it still would not work.
This one works (sys_include has to be on one line for real):
sys_include=($ORACLE_HOME/precomp/public,
/usr/include,
/usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include)
include=($ORACLE_HOME/precomp/public)
include=($ORACLE_HOME/rdbms/demo)
include=($ORACLE_HOME/network/public)
include=($ORACLE_HOME/plsql/public)
include=($ORACLE_HOME/otrace/public)
This one basically causes ProC to eat all available memory and
swap and finally get killed by Linux. This one came from
Metalink as well. Although it is basically the same as the one
above, the order of the directories for 'sys_include' are
different. For my system, this is significant.
sys_include=($ORACLE_HOME/precomp/public,
/usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include,
/usr/include)
include=($ORACLE_HOME/precomp/public)
include=($ORACLE_HOME/rdbms/demo)
include=($ORACLE_HOME/network/public)
include=($ORACLE_HOME/plsql/public)
I hope this helps.
tom

Similar Messages

  • Oracle 8.1.5.2 and Redhat 6.1

    After follow everyone suggest how install
    Oracle 8.1.5 to 8.1.5.0. I used dbassist
    to create the script for my database.
    However, when I try to run the script I got the following messages.
    ORA-01012: not logged on.
    Can anyone help me how to run the script to create the database?
    Thank.
    Andy Tran ([email protected]
    null

    See Section 3.2 of my help page:
    http://homepages.tig.com.au/~jmsalvo/linux/oracle8i.html
    Alternatively, you can create a db without using dbassist. See Section 3.7

  • Performance issues with Oracle EE 9.2.0.4 and RedHat 2.1

    Hello,
    I am having some serious performance issues with Oracle Enterprise Edition 9.2.0.4 and RedHat Linux 2.1. The processor goes berserk at 100% for long (some 5 min.) periods of time, and all the ram memory gets used.
    Some environment characteristics:
    Machine: Intel Pentium IV 2.0GHz with 1GB of RAM.
    OS: RedHat Linux 2.1 Enterprise.
    Oracle: Oracle Enterprise Edition 9.2.0.4
    Application: We have a small web-application with 10 users (for now) and very basic queries (all in stored procedures). Also we use the latest version of ODP.NET with default connection settings (some low pooling, etc).
    Does anyone know what could be going on?
    Is anybody else having this similar behavior?
    We change from SQL-Server so we are not the world expert on the matter. But we want a reliable system nonetheless.
    Please help us out, gives some tips, tricks, or guides…
    Thanks to all,
    Frank

    Thank you very much and sorry I couldn’t write sooner. It seems that the administrator doesn’t see the kswap going on so much, so I don’t really know what is going on.
    We are looking at some queries and some indexing but this is nuts, if I had some poor queries, which we don’t really, the server would show pick right?
    But he goes crazy and has two oracle processes taking all the resources. There seems to be little swapping going on.
    Son now what? They are all ready talking about MS-SQL please help me out here, this is crazy!!!
    We have, may be the most powerful combinations here. What is oracle doing?
    We even kill the Working Process of the IIS and have no one do anything with the database and still dose two processes going on.
    Can some one help me?
    Thanks,
    Frank

  • Stored Proc and dates

    Hi All,
    Fairly new at this, and a little confused with dates and date formats.
    I run the following:
    alter session set nls_date_format = 'dd/mm/yyyy'
    If I select sysdate from dual:
    02/11/2008 --> so this is correct.
    Now what I can't figure out is why I get different results if I use an sql statement VS a stored proc.
    If I run this sql update statement:
    UPDATE MAPPER.CONV_CNSTNTS
    SET CN_VALUE = TO_DATE('12/05/2007','MM/DD/YYYY')
    WHERE CN_TYPE = 'CONV'
    AND CN_REFRNCE = 'CONVDATE';
    When I select this data it shows: 12/05/2007
    This works perfect.
    Now if I take the exact same statement and put it in a stored proc i get a different result:
    create or replace procedure proc_test_date as
    begin
    UPDATE MAPPER.CONV_CNSTNTS
    SET CN_VALUE = TO_DATE('12/05/2007','MM/DD/YYYY')
    WHERE CN_TYPE = 'CONV'
    AND CN_REFRNCE = 'CONVDATE';
    COMMIT;
    end;
    When I select this data it shows: 05-DEC-07
    Why is there a difference here? Is there a difference in the NLS settings that are used when you run an sql statement vs a stored proc?
    Thanks for your help in advance.

    Thank you for the quick response.
    Glad I am on the right track ... NLS settings are painful :)
    So I ran: alter session set nls_date_format = 'Month DD, YYYY';
    Ran my proc and then the select.
    Still the date shows up as: 05-DEC-07
    I looked at the nls_parameters
    select * from v$nls_parameters
    NLS_CALENDAR     GREGORIAN
    NLS_DATE_FORMAT     Month DD, YYYY
    NLS_DATE_LANGUAGE ENGLISH
    I am using Oracle SQL Developer. I made sure these were set as well:
    Tool >> Preferences >> Database >> NLS Parameters
    Date Format --> MM/DD/YYYY
    Seems that I am missing something ...

  • Oracle 8.1.6 Installation on RedHat 6.2

    I was sitting here now for 1 day and now got Oracle 8.1.6 installed on RedHat 6.2. First I downloaded it from the Oracle-Ftp-Server and wanted to run the "runInstaller". That didn't work because of bin/jre not found. In the version 8.1.5 I had an extra script called install/linux/runIns.sh. But that was not available in the downloaded version 8.1.6.
    So I wrote one on my own (just copy this script and save it under install/linux/runIns.sh):
    /usr/local/jre/bin/jre -ss4m -oss4m -ms32m -mx64m -Doracle.installer.nlsEnabled=TRUE -Doracle.installer.startup_location=. -Doracle.installer.library_loc=../../stage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/bin/linux -cp ../../stage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/swingaccess.jar:../../stage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/InstImages.jar :../../stage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/xmlparser.jar:../../stage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/OraInstaller.ja r:../../stage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/ewt.jar:../../stage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/help.jar:../../stage /Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/InstHelp.jar:../../stage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/oracleice.jar:../../stage/Co mponents/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/OraInstaller.jar:/tmp/orainstall: -nojit oracle.sysman.oii.oiic.OiicInstaller -scratchPath /tmp/orainstall -sourceLoc "../../stage/products.jar" -sourceType network $1 $2 $3
    Then you just go to directory install/linux and run "./runIns.sh"
    With this script and jre 1.1.8_V1 (Blackdown) with link to /usr/local/jre it worked properly.
    Hope, that helps.

    All the GUI tools work just ONCE for me...After that i need to reboot the system for another GUI tool to work.
    PS: I get the same messages as you.

  • Unable to install Oracle 9.0.1 on Linux RedHat

    Hi,
    I am unable to install Oracle 9.0.1 on Linux RedHat, tried many times. While installing i get following errors-
    "Error in invoking target install of makefile
    /usr/oracle/9.0.1/plsql/lib/ins-plsql.mk"
    "error in invoking target ioracle of makefile
    /usr/oracle/9.0.1/rdbms/lib/ins-rdbms.mk"
    "Error loading native library : libnjni.so"
    Installation halts while configuring Net Confugration Assistant....
    Any workaround ???
    Thanks in advance.

    There are many versions of RedHat. Your post indicates you are using one of them, but your post really does not give a hint as to which one. Funny thing is - different versions have different install requirements.
    I really don't understand why operating system version is such a big secret. Especially since it is logically so critical to installation issue. Even when installing on Windows, the first questions is 'which Windows'.
    You have, of course, followed the suggestions at http://www.puschitz.com and noted the errors and workarounds, have you not.
    Especially about things like packages and versions.

  • OAS4.0.7, DB8.1.5 and Redhat 6.1

    Has anyone succesfully installed Redhat 6.1 with Oracle 8.1.5
    (8i) and OAS 4.0.7 on it? I tried but i stranded now that OAS
    seems installed. When i want to start the services it seems that
    the orb services don't want to start.
    From the GUI it mentions an OWS-20214: CORBA orb processes can
    not be started... but if i dig a bit deeper the most detailed
    info i can actually dig up is from the ORB control utility:
    unexpected exception IDL:omg.org/CORBA/COMM_FAILURE:1.0, from
    yocorb.c 780.
    I looked at the issue some other people with the OWS-20214 error
    message had, where the hostname could not be resolved, but that
    doesn't seem to be the problem in this case.
    Any suggestions?
    Regards, Martijn
    null

    As far as I knows, OAS 4.0.7 will not work on RH6, you will have
    to wait for OAS 4.0.8 for Linux. OAS3 can run on RH6.
    Geert
    Martijn Spronk (guest) wrote:
    : Has anyone succesfully installed Redhat 6.1 with Oracle 8.1.5
    : (8i) and OAS 4.0.7 on it? I tried but i stranded now that OAS
    : seems installed. When i want to start the services it seems
    that
    : the orb services don't want to start.
    : From the GUI it mentions an OWS-20214: CORBA orb processes can
    : not be started... but if i dig a bit deeper the most detailed
    : info i can actually dig up is from the ORB control utility:
    : unexpected exception IDL:omg.org/CORBA/COMM_FAILURE:1.0, from
    : yocorb.c 780.
    : I looked at the issue some other people with the OWS-20214
    error
    : message had, where the hostname could not be resolved, but
    that
    : doesn't seem to be the problem in this case.
    : Any suggestions?
    : Regards, Martijn
    null

  • Installing Problem: Oracle 8.0.5.1 on Redhat 6.0

    Hello All,
    I'm an oracle and LINUX Newbi.
    I have been trying to install Oracle 8.0.5.1 on Redhat 6.0
    and when I try to run any of the executable the application
    core dumps.
    I have tried all the fixes in the newsgroup..
    ie,manually copying $ORACLE_HOME\bin files, compat fix from
    redhat ...etc.. and have NOT made any progress!!
    Can somebody please writeup a "detailed HOWTO" to do
    a clean installation for Redhat 6.0??
    I'm almost on the verge of switching over to NT because
    of the problems..
    Any help will be greatly appreciated,
    regards,
    abhi
    null

    have set up Oracle using the patch putup by Oracle
    Everyting dseems to be working ok...
    Thanks All for help
    -abhi
    Kumar Srinivas (guest) wrote:
    : The problem is with EGCS and its libraries!
    : If possible, load Redhat 5.2 and install ORACLE -
    : it installs flawlessly.
    : Funnily, you can then run ORACLE on 6.0 without any
    : problems!
    : I am running it on Caldera 2.2 with ORACLE 8.0.5
    : (installed from Redhat 5.2 partition and mounted on the
    : new kernel)
    : Good luck.
    : Vittorio Turchetti (guest) wrote:
    : : Please see the reply by Alan Mullet to a similar question.
    : : There is a known problem with RedHat 6.0 new libraries.
    : : Best regards,
    : : Vittorio
    : : P.S. Please do not say "NT" again!
    : : Abhijit Arunachalam (guest) wrote:
    : : : Hello All,
    : : : I'm an oracle and LINUX Newbi.
    : : : I have been trying to install Oracle 8.0.5.1 on Redhat 6.0
    : : : and when I try to run any of the executable the
    application
    : : : core dumps.
    : : : I have tried all the fixes in the newsgroup..
    : : : ie,manually copying $ORACLE_HOME\bin files, compat fix from
    : : : redhat ...etc.. and have NOT made any progress!!
    : : : Can somebody please writeup a "detailed HOWTO" to do
    : : : a clean installation for Redhat 6.0??
    : : : I'm almost on the verge of switching over to NT because
    : : : of the problems..
    : : : Any help will be greatly appreciated,
    : : : regards,
    : : : abhi
    null

  • OAS/Oracle 8.0.5(EE) on Redhat 6.0

    Has anyone out there been able to get this working?
    If so how?
    I have tried different configurations and none of them have
    worked. Oracle is running fine, but the OAS is not.
    The OAS will start and connect to oracle to add the necessary
    packages, but when I make a call to the application it starts
    the it but does never returns any data. Then after a while the
    listener dies.
    I and others have added the patches and recompiled the kernel as
    noted in other listings. (ps and process limits)
    I am a developer using the OAS for Solaris, so I have a clue on
    how to implement this product. I think Oracle is having a
    problem getting its products running on Linux.
    null

    Actually Oracle 8 EE runs fine on Linux as far as I've seen.
    But, its the OAS v4.0 that we're having problems with here. We
    extensively use the OAS to dynamically render web pages using
    the PL/SQL cartridge, which I haven't been able to get to work
    yet. I've been up and down the documentation, and I use the OAS
    at work on a Solaris platform. It would be nice to setup cheap
    Linux servers running oracle 8 and the OAS 4 for
    development/testing machines, but without the PL/SQL cartridge
    working, we could not use it for testing our applications.
    When I try to connect to an application using the PL/SQL
    cartride on the OAS, my browser just sits there forever waiting
    for data to come back, but nothing ever happens. If I look at
    the active sessions in oracle, there is a session there for the
    user I have setup for the OAS, so it seems to be connecting to
    oracle. If I setup the PL/SQL cartridge to force the user to
    enter in a login name and password, I never get prompted for
    that authentication information and no connection is ever made
    to the database. I hope that this is a known problem at Oracle,
    as I saw that they said they will be releasing a patch for the
    OAS for linux. However, I can't believe that the OAS could have
    been released "broken" and is being sold. Its not just a little
    bug, its that the PL/SQL cartridge flat out doesn't work. I have
    yet to determine, and would like to know, if this problem is
    with the OAS itself, or some weird problem of the OAS running
    under the RedHat version 6.0 system. I have even tried setting
    the owner of the wrks file to root and setuid'ing it to make
    sure there is no permissions problems.
    If anyone has been able to get the PL/SQL cartridge working, can
    you please tell me if you did anything outside of the normal
    installation process and fixes mentioned on technet to get it to
    work? And also what your system config is.
    Thanks for any help.
    Dietmar Stein (guest) wrote:
    : I don't agree, because we have Oracle8 EE running on SuSE Linux
    : 6.1 systems, which are very fast and stable.
    : I also installed Oracle8 on SuSE Linux 5.1 (libc5), 5.3 (libc5
    : with additional libc6), 6.0 (libc6) and 6.1 (glibc) without any
    : problems.
    : If you have any problems you should read the documentation
    : concerning minimum requirements and needed libraries, again, or
    : you should work with Linux a little bit closer (is much more
    : powerful and flexible people often think).
    : Dietmar
    : Romuald Deliens (guest) wrote:
    : : I works with Oracle RDMBS since version 5, and I'm using OWS
    : : since v3 ... I have deployed on many platforms, but anything
    : went
    : : wrong on Linux ...
    : : I don't think OAS/Linux can be said to be a "PRODUCTION"
    : version,
    : : too...
    : : Drew (guest) wrote:
    : : : Has anyone out there been able to get this working?
    : : : If so how?
    : : : I have tried different configurations and none of them
    have
    : : : worked. Oracle is running fine, but the OAS is not.
    : : : The OAS will start and connect to oracle to add the
    necessary
    : : : packages, but when I make a call to the application it
    starts
    : : : the it but does never returns any data. Then after a while
    : the
    : : : listener dies.
    : : : I and others have added the patches and recompiled the
    kernel
    : : as
    : : : noted in other listings. (ps and process limits)
    : : : I am a developer using the OAS for Solaris, so I have a
    clue
    : on
    : : : how to implement this product. I think Oracle is having a
    : : : problem getting its products running on Linux.
    null

  • Oracle 8.0.5.1 on Redhat 7.2

    I installed Oracle 8.0.5.1 on RedHat 7.2. To make it work I forced the installation of compat-glibc 5.2, compat-libs 5.2, and compat-egcs 5.2. So far everything is working normally. I tried to recompile these packages, but with no success. What would be be the worst thing that could happen to my system with this kind of an installation ?
    Is there a proper way to install Oracle 8.0.5.1 on RedHat 7.2 ?

    Do you think running an upgrade from RH5.1 to RH6.0 will require
    any modifications to the existing Oracle installation?
    Philippe Thomassigny (guest) wrote:
    : Well. Good new !
    : I could do it :)
    : I did the following:
    : 1. Install Oracle 8 on a machine with redhat 5 and glibc 2.0.7
    : 2. copy everything in the same directory on the other machine
    : woth redhat 6, but with a directory in wich glibc2.0.7 is
    : installed
    : Ex: /usr/local/glib-2.0.7 contains glibc 2.0.7
    : so I put LD_LIBRARY_PATH=/usr/local/glib-
    2.0.7:$ORACLE_HOME/lib
    : in the env variables
    : so Oracle uses glib 2.0.7 instead of 2.1
    : Other importante stuff: Oracle user system ID and dba group
    ID
    : MUST be the same on both machines. (Ex: oracle=502 dba=101)
    : Then you can compile, recompile, install, desinstall
    everything
    : etc...
    : That's all folks !
    : Enjoy it
    : By the way , I put it on a HP quad-celeron 400 with 512 Meg
    : memory and Raid 5 disk array .... I LOVE velocity ;)
    : It's faster on this that on an SUN ULTRA 450 with same
    : characteristics ?!?!?!
    : Weird no ?
    null

  • Oracle 8.1.7.4 on redhat 7.3 : tablespace creation never ends

    Hi,
    We're running Oracle 8.1.7.4 on Redhat 7.3. System memory is 256 MB (2x128).
    After increasing memory to 1Go (2x512) we're facing a strange problem.
    Tablespaces re-creation hangs, we first drop and then create tablespaces reusing datafiles :
    DROP TABLESPACE TST1 INCLUDING CONTENTS CASCADE CONSTRAINTS;
    DROP TABLESPACE TSI1 INCLUDING CONTENTS CASCADE CONSTRAINTS;
    CREATE TABLESPACE TST1 DATAFILE '?/tst1.dbf' SIZE 1050M REUSE DEFAULT STORAGE (MAXEXTENTS 121 PCTINCREASE 1);
    CREATE TABLESPACE TSI1 DATAFILE '?/tsi1.dbf' SIZE 700M REUS
    E DEFAULT STORAGE (MAXEXTENTS 121 PCTINCREASE 1);
    In the alert.log, drops and first tablespace creation are completed.
    Second tablespace is not created and the oracle process keeps running consuming 99% CPU.
    strace on process after hangs shows nothing.
    Using toad, we see that last sql command issued by session is insert into $ts.... there's no current statement.
    Everything works fine if we set memory back to 256 MB.
    This problem first appeared in production environnement, and we got same problem in dev environnement, so it happens on several servers (Compaq ML370).
    Got no idea, what else could we check to find where's the bug ? Should we tune some oracle or kernel parameters after increasing mem ?
    Mike.

    Metalink:
    Error Correction Support (ECS): 31-DEC-2004
    Extended Support (ES): 31-DEC-2007
    Extended Maintenance Support (EMS): 31-DEC-2006
    If you got the appopriate contract support, you should be able to order 8iR3 by metalink. But you will not find it on OTN

  • Oracle 9.2.0.1  on Redhat Linux ADVANCED SERVER -PATCHES

    HI
    Can some one help me out,
    is Oracle 9.2.0.1 on Redhat Linux ADVANCED SERVER , is having some patch
    set to work on Developer2000,
    if so,please let me know where in we get the same
    tks
    narayana rao

    hi,
    I am trying to install oracle 9i rel2 on red hat adv server 2.1
    Installation and Linking looks fine and during configuration ,
    the database configuration assistant fails with 'End of Communication channel'.
    This makes the software not usable as we get the same error while trying to connect to the database too..
    any ideas?Check the "Oracle Installation Errors" section at
    http://www.puschitz.com/OracleOnLinux.shtml
    In this section I explain what I did about the
    "end-of-file on communication channel" error
    on RH AS.
    Any feedback on this problem and solution is appreciated.
    Werner

  • Guide to install Oracle WebLogic Server 10.3 on RedHat 5

    Hello buddies!
    Can anybody help me to install Oracle WebLogic Server 10.3 on RedHat 5.
    If anyone having Guide for that pls share wiith me..

    Sure. I always use the generic installer, that way the install is the same on all platforms:
    1 download and install JDK 6 update 10
    * http://java.sun.com/javase/downloads/index.jsp
    2 download generic installer
    * http://download.oracle.com/otn/bea/weblogic/server103/server103_generic.jar
    3 install
    * http://e-docs.bea.com/common/docs103/install/start.html#wp1074027
    -Adrian

  • The installer don't run when install oracle 9.2.0.1 on redhat 9 at 41%

    The installer don't run when install oracle 9.2.0.1 on redhat 9 at 41%
    just installed component of 'oracle intermedia ',the installer don't go on.i wait it pass five hour,but the installer's process still on 41%
    my set shmmax 1G and my physics memory is 512m
    please help me !

    Oracle is NOT certified on RedHat 9, only on RedHat AS 2.1. It is possible to make it work though. Refer to the following web site which has a very good list of problems and work arounds for installing Oracle on RedHat:
    www.puschitz.com

  • Oracle EBS 12.1 certification Linux RedHat 5 (32 Bits)

    Hi,
    Is Oracle EBS 12.1 certified on Linux RedHat 5 (32 Bits) ?
    Regards,

    Yes - pl see MOS Doc 761564.1 (Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86)
    HTH
    Srini

Maybe you are looking for