<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: oraenv error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912685#M933663</link>
    <description>If you are using ksh.  it probably is ksh ulimit=unlimitd.&lt;BR /&gt;modify your ora env:&lt;BR /&gt;&lt;BR /&gt;if [ $? = 0 -a "$ULIMIT" != "unlimited" ] ; then&lt;BR /&gt;  if [ "$ULIMIT" -lt 2113674 ] ; then&lt;BR /&gt;    if [ -f $ORACLE_HOME/bin/osh ] ; then&lt;BR /&gt;        exec $ORACLE_HOME/bin/osh&lt;BR /&gt;    else&lt;BR /&gt;        for D in `echo $PATH | tr : " "`&lt;BR /&gt;        do&lt;BR /&gt;            if [ -f $D/osh ] ; then&lt;BR /&gt;                exec $D/osh&lt;BR /&gt;            fi&lt;BR /&gt;        done&lt;BR /&gt;    fi&lt;BR /&gt;  fi&lt;BR /&gt;</description>
    <pubDate>Wed, 26 Feb 2003 16:22:22 GMT</pubDate>
    <dc:creator>Rory R Hammond</dc:creator>
    <dc:date>2003-02-26T16:22:22Z</dc:date>
    <item>
      <title>oraenv error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912680#M933658</link>
      <description>please help, i don't know why an error occures, i never changed anything in that file.&lt;BR /&gt;&lt;BR /&gt;I take ksh. but it just does nothing after entering the SID.&lt;BR /&gt;The oraenv file is attached</description>
      <pubDate>Tue, 25 Feb 2003 15:09:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912680#M933658</guid>
      <dc:creator>Ingo Dengler</dc:creator>
      <dc:date>2003-02-25T15:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: oraenv error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912681#M933659</link>
      <description>Before you run oraenv, issue the command:&lt;BR /&gt;ORACLE_TRACE=T&lt;BR /&gt;When you run oraenv it will display debug information and show you the command it is hanging on.&lt;BR /&gt;Afterwards, unset ORACLE_TRACE and do a set -x in your shell.</description>
      <pubDate>Tue, 25 Feb 2003 16:22:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912681#M933659</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-02-25T16:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: oraenv error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912682#M933660</link>
      <description>Afterwards, do a set +x, not a set -x.</description>
      <pubDate>Tue, 25 Feb 2003 16:26:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912682#M933660</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-02-25T16:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: oraenv error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912683#M933661</link>
      <description>We comment out some of the lines we don't need , export ORAENV_ASK=NO and have one oraenv script per oracle version (e.g. /usr/local/bin/oraenv.817)&lt;BR /&gt;&lt;BR /&gt;cf. attachment&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jean-luc</description>
      <pubDate>Tue, 25 Feb 2003 17:19:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912683#M933661</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2003-02-25T17:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: oraenv error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912684#M933662</link>
      <description>This code section was not properly tested by Oracle.&lt;BR /&gt;&lt;BR /&gt;The first test which says unlimited doesn't work on HP-UX&lt;BR /&gt;&lt;BR /&gt;You'll need to modify that code.  This only applies if your error is....something like this.&lt;BR /&gt;&lt;BR /&gt;unlimited not numeric.  That's not exact but I used to get it all the time.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if [ $? = 0 -a "$ULIMIT" != "unlimited" ] ; then&lt;BR /&gt;  if [ "$ULIMIT" -lt 2113674 ] ; then&lt;BR /&gt;&lt;BR /&gt;    if [ -f $ORACLE_HOME/bin/osh ] ; then&lt;BR /&gt; exec $ORACLE_HOME/bin/osh&lt;BR /&gt;    else&lt;BR /&gt; for D in `echo $PATH | tr : " "`&lt;BR /&gt; do&lt;BR /&gt;     if [ -f $D/osh ] ; then&lt;BR /&gt;  exec $D/osh&lt;BR /&gt;     fi&lt;BR /&gt; done&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here is some possible alternet code, though you'll need to thoroughly test it.&lt;BR /&gt;&lt;BR /&gt;   102ULIMIT=`LANG=C ulimit 2&amp;gt;/dev/null`&lt;BR /&gt;   103&lt;BR /&gt;   104if [ $? = 0 -a "$ULIMIT" -lt 2113674 ] ; then&lt;BR /&gt;   105&lt;BR /&gt;   106    if [ -f $ORACLE_HOME/bin/osh ] ; then&lt;BR /&gt;   107          exec $ORACLE_HOME/bin/osh&lt;BR /&gt;   108      else&lt;BR /&gt;   109          for D in `echo $PATH | tr : " "`&lt;BR /&gt;   110          do&lt;BR /&gt;   111              if [ -f $D/osh ] ; then&lt;BR /&gt;   112                  exec $D/osh&lt;BR /&gt;   113              fi&lt;BR /&gt;   114          done&lt;BR /&gt;   115      fi&lt;BR /&gt;   116&lt;BR /&gt;   117  fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;numbers left in on purpose. Makes you read it.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 25 Feb 2003 20:15:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912684#M933662</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-02-25T20:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: oraenv error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912685#M933663</link>
      <description>If you are using ksh.  it probably is ksh ulimit=unlimitd.&lt;BR /&gt;modify your ora env:&lt;BR /&gt;&lt;BR /&gt;if [ $? = 0 -a "$ULIMIT" != "unlimited" ] ; then&lt;BR /&gt;  if [ "$ULIMIT" -lt 2113674 ] ; then&lt;BR /&gt;    if [ -f $ORACLE_HOME/bin/osh ] ; then&lt;BR /&gt;        exec $ORACLE_HOME/bin/osh&lt;BR /&gt;    else&lt;BR /&gt;        for D in `echo $PATH | tr : " "`&lt;BR /&gt;        do&lt;BR /&gt;            if [ -f $D/osh ] ; then&lt;BR /&gt;                exec $D/osh&lt;BR /&gt;            fi&lt;BR /&gt;        done&lt;BR /&gt;    fi&lt;BR /&gt;  fi&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Feb 2003 16:22:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oraenv-error/m-p/2912685#M933663</guid>
      <dc:creator>Rory R Hammond</dc:creator>
      <dc:date>2003-02-26T16:22:22Z</dc:date>
    </item>
  </channel>
</rss>

