<?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: Oracle 8.16 HP-UX 11.0 startup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452207#M830728</link>
    <description>Try using nohup on the su command line like so:&lt;BR /&gt;&lt;BR /&gt;nohup su ... &amp;gt;/var/opt/oracle/dbstart.log 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;</description>
    <pubDate>Tue, 27 Feb 2001 23:39:04 GMT</pubDate>
    <dc:creator>Ian P. Springer</dc:creator>
    <dc:date>2001-02-27T23:39:04Z</dc:date>
    <item>
      <title>Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452196#M830717</link>
      <description>I've created an /sbin/init.d/oracle script and appropriate /sbin/rcn.d links to it. Oracle starts and stops okay but I recieve alot of login type info in /etc/rc.log.&lt;BR /&gt;&lt;BR /&gt;The oracle script does su - oracle -c dbstart&lt;BR /&gt;type processing. A sample follows:&lt;BR /&gt;&lt;BR /&gt;Rights for non-DOD U.S. Government Departments and Agencies are as set&lt;BR /&gt;forth in FAR 52.227-19(c)(1,2).&lt;BR /&gt;You have mail.&lt;BR /&gt;&lt;BR /&gt;   ***** Setting up private environment ... ***** &lt;BR /&gt;Not a terminal&lt;BR /&gt;stty: : Not a typewriter&lt;BR /&gt;stty: : Not a typewriter&lt;BR /&gt;&lt;BR /&gt; [3g&lt;BR /&gt;         H         H         H         H         H         H         H         H         H&lt;BR /&gt;mesg: not a tty&lt;BR /&gt;&lt;BR /&gt;LSNRCTL for HPUX: Version 8.1.6.0.0 - Production on 01-OCT-2000 02:15:31&lt;BR /&gt;&lt;BR /&gt;--End of sample---&lt;BR /&gt;&lt;BR /&gt;I would at least like to get rid of the Not a terminal and not a typewriter messages.&lt;BR /&gt;&lt;BR /&gt;Thanks for your HELP.</description>
      <pubDate>Tue, 10 Oct 2000 21:14:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452196#M830717</guid>
      <dc:creator>Dan Ryan</dc:creator>
      <dc:date>2000-10-10T21:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452197#M830718</link>
      <description>Dan:&lt;BR /&gt;&lt;BR /&gt;The messages you are seeing are a consequence of the .profile being read during the 'su'.  The "not a terminal" message is from stty failing to get the terminal type -- it can't; it's not a interactive login.&lt;BR /&gt;&lt;BR /&gt;The easist solution is to redirect stdout &amp;amp; stderr to /dev/null, as:&lt;BR /&gt;&lt;BR /&gt;su - oracle -c "dbstart" &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;This gets rid of the nasty messages.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 10 Oct 2000 21:30:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452197#M830718</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-10-10T21:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452198#M830719</link>
      <description>Dan &lt;BR /&gt;as james said its your script is expecting some thing from tty . its most common messge , if you dont like this best way is to redirect standard out and standard error to /dev/null ie &amp;gt; /dev/null 2&amp;gt;&amp;amp;1</description>
      <pubDate>Tue, 10 Oct 2000 23:33:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452198#M830719</guid>
      <dc:creator>rajsri</dc:creator>
      <dc:date>2000-10-10T23:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452199#M830720</link>
      <description>To avoid the problem altogether, don't supply the '-' to the su command.&lt;BR /&gt;&lt;BR /&gt;su oracle -c "dbstart" &lt;BR /&gt;&lt;BR /&gt;This prevents the 'profile' scripts from being run so be aware that any script that you run in this manner can't rely on any environment variable being set by them. &lt;BR /&gt;&lt;BR /&gt;Oracle's dbstart script sets up its own environment from /etc/oratab however so it will be ok.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
      <pubDate>Wed, 11 Oct 2000 05:36:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452199#M830720</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2000-10-11T05:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452200#M830721</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;you could also put the stty commands within an if..then..fi statement into /home/oracle/.profile:&lt;BR /&gt;if [ -t ]&lt;BR /&gt;then&lt;BR /&gt;stty ....&lt;BR /&gt;....&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;The if [ -t ] checks if the proccess is assosiated with a terminal. If this is not true, then the stty commands are nor executed.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 11 Oct 2000 05:51:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452200#M830721</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2000-10-11T05:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452201#M830722</link>
      <description>Hi Dan&lt;BR /&gt;you don't have to redirect the output of the &lt;BR /&gt;"su - c ....". we had the same problem. it happens 'cos the standard system-wide profile has a bug. to solve the problem we simply entered the following lines to the oracle user's profile :&lt;BR /&gt;set -u&lt;BR /&gt;stty hupcl ixon ixoff 2&amp;gt;/dev/null &lt;BR /&gt;&lt;BR /&gt;This should help&lt;BR /&gt;&lt;BR /&gt;have fun....</description>
      <pubDate>Fri, 13 Oct 2000 07:58:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452201#M830722</guid>
      <dc:creator>Sandro Schaer</dc:creator>
      <dc:date>2000-10-13T07:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452202#M830723</link>
      <description>It is not advisable to do su - oracle -c "dbstart" &amp;gt; /dev/null 2&amp;gt;&amp;amp;1. It is better to do  set -u &lt;BR /&gt;stty hupcl ixon ixoff 2&amp;gt; /dev/null , as Sandro has pointed out.&lt;BR /&gt;This will help you correct any problem that occured during startup from the /etc/rc.log file.&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Oct 2000 08:18:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452202#M830723</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-10-13T08:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452203#M830724</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Thanks Sandro &amp;amp; Chris.  I wasn't aware of the profile setting, although I well appreciated the potential loss of good information with the redirection.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 13 Oct 2000 08:34:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452203#M830724</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-10-13T08:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452204#M830725</link>
      <description>Thank You to everyone who helped with this.&lt;BR /&gt;Special thanks to Sandros and Andreas. I ended up using bothe these recommendations.&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Oct 2000 18:40:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452204#M830725</guid>
      <dc:creator>Dan Ryan</dc:creator>
      <dc:date>2000-10-16T18:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452205#M830726</link>
      <description>Hi Dan&lt;BR /&gt;&lt;BR /&gt;Be aware that the provided dbstart script in 8.1.6 have a bug, that Oracle knows of.&lt;BR /&gt;&lt;BR /&gt;The following is from MetaLink:&lt;BR /&gt;&lt;BR /&gt;Problem Description&lt;BR /&gt;===================&lt;BR /&gt;&lt;BR /&gt;  "dbstart" is a shellscript used on Unix platforms to start databases&lt;BR /&gt;  listed in the "oratab" file. It is often called from system startup&lt;BR /&gt;  scripts. &lt;BR /&gt;&lt;BR /&gt;  The "dbstart" script shipped with all versions of Oracle up to and&lt;BR /&gt;  including 8.1.6 does not start any 8.1.6 instances if they are down.&lt;BR /&gt;  "dbstart" will report "Database &lt;SID&gt; warm started" rather than starting&lt;BR /&gt;  the instance. This problem only affects 8.1.6 (or later) instances. &lt;BR /&gt;&lt;BR /&gt;  The change in the banner may affect users custom startup / shutdown&lt;BR /&gt;  scripts.&lt;BR /&gt;   &lt;BR /&gt;  "dbshut" has no problem.&lt;BR /&gt;&lt;BR /&gt;  Please note there are 2 related issues which should be born in mind&lt;BR /&gt;  when changing any startup / shutdown scripts:&lt;BR /&gt;&lt;BR /&gt;     Advance notification of Server Manager desupport      [NOTE:74943.1]&lt;BR /&gt;     Advance notification of CONNECT INTERNAL desupport    [NOTE:50508.1]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Solution Description&lt;BR /&gt;====================&lt;BR /&gt;  &lt;BR /&gt;  Enterprise Edition Workaround&lt;BR /&gt;  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;BR /&gt;  The workaround is to change the dbstart script to look for the string&lt;BR /&gt;  "Oracle8i Enterprise Edition" instead of "PL/SQL" by making the following &lt;BR /&gt;  changes:&lt;BR /&gt;&lt;BR /&gt;   1. Save a copy of the 8.1.6 $ORACLE_HOME/bin/dbstart script&lt;BR /&gt; &lt;BR /&gt;   2. Edit the script and change the 'awk' lines&lt;BR /&gt;      from:&lt;BR /&gt;        VERSION=`$ORACLE_HOME/bin/svrmgrl command=exit | awk '&lt;BR /&gt;          /PL/SQL (Release|Version)/ {substr($3,1,3) ;&lt;BR /&gt;          print substr($3,1,3)}'`&lt;BR /&gt;      to:&lt;BR /&gt;        VERSION=`$ORACLE_HOME/bin/svrmgrl command=exit | awk '&lt;BR /&gt;          /PL/SQL (Release|Version)/ { print substr($3,1,3); exit }&lt;BR /&gt;          /Oracle7 Server (Release|Version)/ { print substr($4,1,3); exit }&lt;BR /&gt;          /Oracle8i Enterprise Edition (Release|Version)/ { print substr($5,1,3); exit }&lt;BR /&gt;          /Oracle8i (Release|Version)/ { print substr($3,1,3); exit }'`&lt;BR /&gt;&lt;BR /&gt;      Additionally for platforms which set LD_LIBRARY_PATH in the dbstart&lt;BR /&gt;      script you should change the following:&lt;BR /&gt;      From:&lt;BR /&gt;            LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${ORACLE_HOME}/lib ; &lt;BR /&gt;            export LD_LIBRARY_PATH&lt;BR /&gt;      To:&lt;BR /&gt;            LD_LIBRARY_PATH=${ORACLE_HOME}/lib:${LD_LIBRARY_PATH} ; &lt;BR /&gt;            export LD_LIBRARY_PATH&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;   3. Copy the updated "dbstart" to any location it is expected to reside.&lt;BR /&gt;      Eg: system startup scripts often run /usr/local/bin/dbstart.&lt;BR /&gt;&lt;BR /&gt;      IMPORTANT: Do not overwrite existing scripts without taking a backup&lt;BR /&gt;                 copy first as the script you are overwriting may have&lt;BR /&gt;                 been modified.&lt;BR /&gt;&lt;BR /&gt;   NOTE: This workaround will only work for Oracle8 Enterprise Editions &lt;BR /&gt;         Similar workarounds may be used for other editions.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Explanation&lt;BR /&gt;-----------&lt;BR /&gt;&lt;BR /&gt;  The problem is caused by a change in the Oracle banner which is output &lt;BR /&gt;  by Oracle version 8.1.6. The banner no longer includes a PL/SQL line&lt;BR /&gt;  and so the test in "dbstart" for a PL/SQL version returns a blank string&lt;BR /&gt;  which in turn causes the step to startup the instance to be skipped.&lt;BR /&gt;  &lt;BR /&gt;&lt;BR /&gt;References&lt;BR /&gt;----------&lt;BR /&gt;&lt;BR /&gt;  The problem is reported in [BUG:1154931]&lt;BR /&gt;&lt;BR /&gt;  The "oratab" file typically exists in either /etc/oratab or &lt;BR /&gt;  /var/opt/oracle/oratab&lt;BR /&gt;&lt;BR /&gt;  [NOTE:50508.1] - Advance notification of CONNECT INTERNAL desupport    &lt;BR /&gt;  [NOTE:74943.1] - Advance notification of Server Manager desupport&lt;BR /&gt;&lt;/SID&gt;</description>
      <pubDate>Wed, 25 Oct 2000 06:47:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452205#M830726</guid>
      <dc:creator>Jesper Sivertsen</dc:creator>
      <dc:date>2000-10-25T06:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452206#M830727</link>
      <description>Hi Dan&lt;BR /&gt;&lt;BR /&gt;Be aware that the provided dbstart script in 8.1.6 have a bug, that Oracle knows of.&lt;BR /&gt;&lt;BR /&gt;The following is from MetaLink:&lt;BR /&gt;&lt;BR /&gt;Problem Description&lt;BR /&gt;===================&lt;BR /&gt;&lt;BR /&gt;  "dbstart" is a shellscript used on Unix platforms to start databases&lt;BR /&gt;  listed in the "oratab" file. It is often called from system startup&lt;BR /&gt;  scripts. &lt;BR /&gt;&lt;BR /&gt;  The "dbstart" script shipped with all versions of Oracle up to and&lt;BR /&gt;  including 8.1.6 does not start any 8.1.6 instances if they are down.&lt;BR /&gt;  "dbstart" will report "Database &lt;SID&gt; warm started" rather than starting&lt;BR /&gt;  the instance. This problem only affects 8.1.6 (or later) instances. &lt;BR /&gt;&lt;BR /&gt;  The change in the banner may affect users custom startup / shutdown&lt;BR /&gt;  scripts.&lt;BR /&gt;   &lt;BR /&gt;  "dbshut" has no problem.&lt;BR /&gt;&lt;BR /&gt;  Please note there are 2 related issues which should be born in mind&lt;BR /&gt;  when changing any startup / shutdown scripts:&lt;BR /&gt;&lt;BR /&gt;     Advance notification of Server Manager desupport      [NOTE:74943.1]&lt;BR /&gt;     Advance notification of CONNECT INTERNAL desupport    [NOTE:50508.1]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Solution Description&lt;BR /&gt;====================&lt;BR /&gt;  &lt;BR /&gt;  Enterprise Edition Workaround&lt;BR /&gt;  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;BR /&gt;  The workaround is to change the dbstart script to look for the string&lt;BR /&gt;  "Oracle8i Enterprise Edition" instead of "PL/SQL" by making the following &lt;BR /&gt;  changes:&lt;BR /&gt;&lt;BR /&gt;   1. Save a copy of the 8.1.6 $ORACLE_HOME/bin/dbstart script&lt;BR /&gt; &lt;BR /&gt;   2. Edit the script and change the 'awk' lines&lt;BR /&gt;      from:&lt;BR /&gt;        VERSION=`$ORACLE_HOME/bin/svrmgrl command=exit | awk '&lt;BR /&gt;          /PL/SQL (Release|Version)/ {substr($3,1,3) ;&lt;BR /&gt;          print substr($3,1,3)}'`&lt;BR /&gt;      to:&lt;BR /&gt;        VERSION=`$ORACLE_HOME/bin/svrmgrl command=exit | awk '&lt;BR /&gt;          /PL/SQL (Release|Version)/ { print substr($3,1,3); exit }&lt;BR /&gt;          /Oracle7 Server (Release|Version)/ { print substr($4,1,3); exit }&lt;BR /&gt;          /Oracle8i Enterprise Edition (Release|Version)/ { print substr($5,1,3); exit }&lt;BR /&gt;          /Oracle8i (Release|Version)/ { print substr($3,1,3); exit }'`&lt;BR /&gt;&lt;BR /&gt;      Additionally for platforms which set LD_LIBRARY_PATH in the dbstart&lt;BR /&gt;      script you should change the following:&lt;BR /&gt;      From:&lt;BR /&gt;            LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${ORACLE_HOME}/lib ; &lt;BR /&gt;            export LD_LIBRARY_PATH&lt;BR /&gt;      To:&lt;BR /&gt;            LD_LIBRARY_PATH=${ORACLE_HOME}/lib:${LD_LIBRARY_PATH} ; &lt;BR /&gt;            export LD_LIBRARY_PATH&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;   3. Copy the updated "dbstart" to any location it is expected to reside.&lt;BR /&gt;      Eg: system startup scripts often run /usr/local/bin/dbstart.&lt;BR /&gt;&lt;BR /&gt;      IMPORTANT: Do not overwrite existing scripts without taking a backup&lt;BR /&gt;                 copy first as the script you are overwriting may have&lt;BR /&gt;                 been modified.&lt;BR /&gt;&lt;BR /&gt;   NOTE: This workaround will only work for Oracle8 Enterprise Editions &lt;BR /&gt;         Similar workarounds may be used for other editions.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Explanation&lt;BR /&gt;-----------&lt;BR /&gt;&lt;BR /&gt;  The problem is caused by a change in the Oracle banner which is output &lt;BR /&gt;  by Oracle version 8.1.6. The banner no longer includes a PL/SQL line&lt;BR /&gt;  and so the test in "dbstart" for a PL/SQL version returns a blank string&lt;BR /&gt;  which in turn causes the step to startup the instance to be skipped.&lt;BR /&gt;  &lt;BR /&gt;&lt;BR /&gt;References&lt;BR /&gt;----------&lt;BR /&gt;&lt;BR /&gt;  The problem is reported in [BUG:1154931]&lt;BR /&gt;&lt;BR /&gt;  The "oratab" file typically exists in either /etc/oratab or &lt;BR /&gt;  /var/opt/oracle/oratab&lt;BR /&gt;&lt;BR /&gt;  [NOTE:50508.1] - Advance notification of CONNECT INTERNAL desupport    &lt;BR /&gt;  [NOTE:74943.1] - Advance notification of Server Manager desupport&lt;BR /&gt;&lt;/SID&gt;</description>
      <pubDate>Wed, 25 Oct 2000 07:03:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452206#M830727</guid>
      <dc:creator>Jesper Sivertsen</dc:creator>
      <dc:date>2000-10-25T07:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452207#M830728</link>
      <description>Try using nohup on the su command line like so:&lt;BR /&gt;&lt;BR /&gt;nohup su ... &amp;gt;/var/opt/oracle/dbstart.log 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Feb 2001 23:39:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452207#M830728</guid>
      <dc:creator>Ian P. Springer</dc:creator>
      <dc:date>2001-02-27T23:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.16 HP-UX 11.0 startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452208#M830729</link>
      <description>Note, in above posts regarding fixes for the dbstart script, "PL/SQL" should actually be "PL\/SQL"  (the slash needs to be escaped so awk knows it's part of the regexp)&lt;BR /&gt;&lt;BR /&gt;-Ian&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Feb 2001 00:40:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-16-hp-ux-11-0-startup/m-p/2452208#M830729</guid>
      <dc:creator>Ian P. Springer</dc:creator>
      <dc:date>2001-02-28T00:40:00Z</dc:date>
    </item>
  </channel>
</rss>

