<?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: database startup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173248#M692913</link>
    <description>hi yoograj,&lt;BR /&gt;&lt;BR /&gt;i think problem with this script &lt;BR /&gt;ssh not able switch  oracle&lt;BR /&gt;&lt;BR /&gt;how i can resolve it&lt;BR /&gt;&lt;BR /&gt;thaanks&lt;BR /&gt;rakesh</description>
    <pubDate>Mon, 07 Apr 2008 05:21:29 GMT</pubDate>
    <dc:creator>rakkesh_1970</dc:creator>
    <dc:date>2008-04-07T05:21:29Z</dc:date>
    <item>
      <title>database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173240#M692905</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;we are using the oracle 10g database on hp ux 11.23 version&lt;BR /&gt;&lt;BR /&gt;the following script we  are trying to auto start and shutdown database and lsn on startup &lt;BR /&gt;&lt;BR /&gt; # installation&lt;BR /&gt;ORACLE_HOME=/u01/app/oracle/OraHome_1&lt;BR /&gt;ORACLE=oracle&lt;BR /&gt;PATH=${PATH}:$ORACLE_HOME/bin&lt;BR /&gt;HOST='hostname'&lt;BR /&gt;#&lt;BR /&gt;# change the value of ORACLE to the login name of the&lt;BR /&gt;# oracle owner at your site&lt;BR /&gt;#&lt;BR /&gt;export ORACLE_HOME PATH&lt;BR /&gt;su - $ORACLE -c "$0 $1 ORA_DB"&lt;BR /&gt;##&lt;BR /&gt;if [ ! "$2" = "ORA_DB" ] ; then&lt;BR /&gt;ssh -l $HOST $ORACLE /sbin/init.d/oradba $1 ORA_DB&lt;BR /&gt;exit&lt;BR /&gt;fi&lt;BR /&gt;#&lt;BR /&gt;LOG=$ORACLE_HOME/startup1.log&lt;BR /&gt;touch $LOG&lt;BR /&gt;chmod a+r $LOG&lt;BR /&gt;#&lt;BR /&gt;case $1 in&lt;BR /&gt;'start')&lt;BR /&gt;echo "$0: starting up" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;# Start Oracle Net&lt;BR /&gt;if [ -f $ORACLE_HOME/bin/tnslsnr ] ;&lt;BR /&gt;then&lt;BR /&gt;echo "starting Oracle Net listener"&lt;BR /&gt;$ORACLE_HOME/bin/lsnrctl start &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;fi&lt;BR /&gt;echo "starting Oracle databases"&lt;BR /&gt;$ORACLE_HOME/bin/dbstart &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;;;&lt;BR /&gt;'stop')&lt;BR /&gt;echo "$0: shutting down" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;# Stop Oracle Net&lt;BR /&gt;if [ -f $ORACLE_HOME/bin/tnslsnr ] ;&lt;BR /&gt;then&lt;BR /&gt;echo "stopping Oracle Net listener"&lt;BR /&gt;$ORACLE_HOME/bin/lsnrctl stop &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;fi&lt;BR /&gt;echo "stopping Oracle databases"&lt;BR /&gt;$ORACLE_HOME/bin/dbshut &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;;;&lt;BR /&gt;*)&lt;BR /&gt;echo "usage: $0 {start|stop}".&lt;BR /&gt;&lt;BR /&gt;exit&lt;BR /&gt;;;&lt;BR /&gt;esac&lt;BR /&gt;#&lt;BR /&gt;exit&lt;BR /&gt;RACLE_HOME=/u01/app/oracle/OraHome_1&lt;BR /&gt;ORACLE=oracle&lt;BR /&gt;PATH=${PATH}:$ORACLE_HOME/bin&lt;BR /&gt;HOST='hostname'&lt;BR /&gt;#&lt;BR /&gt;# change the value of ORACLE to the login name of the&lt;BR /&gt;# oracle owner at your site&lt;BR /&gt;#&lt;BR /&gt;export ORACLE_HOME PATH&lt;BR /&gt;su - $ORACLE -c "$0 $1 ORA_DB"&lt;BR /&gt;##&lt;BR /&gt;if [ ! "$2" = "ORA_DB" ] ; then&lt;BR /&gt;rsh $HOST -l $ORACLE /sbin/init.d/oradba $1 ORA_DB&lt;BR /&gt;exit&lt;BR /&gt;fi&lt;BR /&gt;#&lt;BR /&gt;LOG=$ORACLE_HOME/startup1.log&lt;BR /&gt;touch $LOG&lt;BR /&gt;chmod a+r $LOG&lt;BR /&gt;#&lt;BR /&gt;case $1 in&lt;BR /&gt;'start')&lt;BR /&gt;echo "$0: starting up" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;# Start Oracle Net&lt;BR /&gt;if [ -f $ORACLE_HOME/bin/tnslsnr ] ;&lt;BR /&gt;then&lt;BR /&gt;echo "starting Oracle Net listener"&lt;BR /&gt;$ORACLE_HOME/bin/lsnrctl start &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;fi&lt;BR /&gt;echo "starting Oracle databases"&lt;BR /&gt;$ORACLE_HOME/bin/dbstart &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;;;&lt;BR /&gt;'stop')&lt;BR /&gt;echo "$0: shutting down" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;# Stop Oracle Net&lt;BR /&gt;if [ -f $ORACLE_HOME/bin/tnslsnr ] ;&lt;BR /&gt;then&lt;BR /&gt;echo "stopping Oracle Net listener"&lt;BR /&gt;$ORACLE_HOME/bin/lsnrctl stop &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;script directory &lt;BR /&gt;=/sbin/init.d&lt;BR /&gt;script output&lt;BR /&gt;bash-3.2# ./dbora start&lt;BR /&gt;+ ORACLE_HOME=/u01/app/oracle/OraHome_1&lt;BR /&gt;+ ORACLE=oracle&lt;BR /&gt;+ PATH=/usr/sbin:/bin:/usr/bin:/usr/dt/bin:/usr/bin/X11:/sbin:/usr/ccs/bin:/usr/contrib/bin:/usr/contrib/Q4/bin:/opt/perl/bin:/opt/ipf/bin:/opt/hparray/bin:/opt/nettladm/bin:/opt/fcms/bin:/opt/sas/bin:/opt/wbem/bin:/opt/wbem/sbin:/opt/resmon/bin:/usr/contrib/kwdb/bin:/opt/graphics/common/bin:/opt/sfm/bin:/opt/hpsmh/bin:/opt/upgrade/bin:/opt/sec_mgmt/bastille/bin:/opt/drd/bin:/opt/dsau/bin:/opt/dsau/sbin:/opt/firefox:/opt/gnome/bin:/opt/ignite/bin:/opt/mozilla:/opt/perl_32/bin:/opt/perl_64/bin:/opt/sec_mgmt/spc/bin:/opt/ssh/bin:/opt/swa/bin:/opt/thunderbird:/opt/gwlm/bin:/usr/contrib/bin/X11:/opt/langtools/bin:/opt/caliper/bin:/opt/sentinel/bin:/usr/local/bin:/bin&lt;BR /&gt;+ + hostname&lt;BR /&gt;HOST=posserve.ciegroup.net&lt;BR /&gt;+ + uname&lt;BR /&gt;PLATFORM=HP-UX&lt;BR /&gt;+ export ORACLE_HOME PATH&lt;BR /&gt;+ i#&lt;BR /&gt;./dbora[17]: i#:  not found.&lt;BR /&gt;+ [ !  = ORA_DB ]&lt;BR /&gt;+ echo&lt;BR /&gt;&lt;BR /&gt;+ [ HP-UX = HP-UX ]&lt;BR /&gt;+ su - oracle -c ./dbora start ORA_DB&lt;BR /&gt;(c)Copyright 1983-2003 Hewlett-Packard Development Company, L.P.&lt;BR /&gt;(c)Copyright 1979, 1980, 1983, 1985-1993 The Regents of the Univ. of California&lt;BR /&gt;(c)Copyright 1980, 1984, 1986 Novell, Inc.&lt;BR /&gt;(c)Copyright 1986-2000 Sun Microsystems, Inc.&lt;BR /&gt;(c)Copyright 1985, 1986, 1988 Massachusetts Institute of Technology&lt;BR /&gt;(c)Copyright 1989-1993  The Open Software Foundation, Inc.&lt;BR /&gt;(c)Copyright 1990 Motorola, Inc.&lt;BR /&gt;(c)Copyright 1990, 1991, 1992 Cornell University&lt;BR /&gt;(c)Copyright 1989-1991 The University of Maryland&lt;BR /&gt;(c)Copyright 1988 Carnegie Mellon University&lt;BR /&gt;(c)Copyright 1991-2003 Mentat Inc.&lt;BR /&gt;(c)Copyright 1996 Morning Star Technologies, Inc.&lt;BR /&gt;(c)Copyright 1996 Progressive Systems, Inc.&lt;BR /&gt;  &lt;BR /&gt;&lt;BR /&gt;                  RESTRICTED RIGHTS LEGEND&lt;BR /&gt;Use, duplication, or disclosure by the U.S. Government is subject to&lt;BR /&gt;restrictions as set forth in sub-paragraph (c)(1)(ii) of the Rights in&lt;BR /&gt;Technical Data and Computer Software clause in DFARS 252.227-7013.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;                  Hewlett-Packard Company&lt;BR /&gt;                  3000 Hanover Street&lt;BR /&gt;                  Palo Alto, CA 94304 U.S.A.&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;+ exit&lt;BR /&gt;&lt;BR /&gt;pls provide me the input  to resolve the problem&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;&lt;BR /&gt;rakesh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Apr 2008 10:40:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173240#M692905</guid>
      <dc:creator>rakkesh_1970</dc:creator>
      <dc:date>2008-04-03T10:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173241#M692906</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Possibilities:&lt;BR /&gt;1) Pam is configured so the su - startup option does not work and the script is prompted for a password.&lt;BR /&gt;2) Script error.&lt;BR /&gt;&lt;BR /&gt;In either event, set -x the script and modify its run so that output goes to a file. Then maybe you'll at least have some idea what went wrong.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 03 Apr 2008 11:08:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173241#M692906</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-04-03T11:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173242#M692907</link>
      <description>hi Rakesh,&lt;BR /&gt;&lt;BR /&gt;At first sight, there seem to be an error in your script! see line:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; RACLE_HOME=/u01/app/oracle/OraHome_1 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;revert&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Thu, 03 Apr 2008 15:48:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173242#M692907</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-04-03T15:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173243#M692908</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;clarification:&lt;BR /&gt;&lt;BR /&gt;you wrote:&lt;BR /&gt;RACLE_HOME=/u01/app/oracle/OraHome_1 &lt;BR /&gt;&lt;BR /&gt;instead of:&lt;BR /&gt;ORACLE_HOME=/u01/app/oracle/OraHome_1 &lt;BR /&gt;&lt;BR /&gt;also, when you are launching command:&lt;BR /&gt;./dbora start&lt;BR /&gt;&lt;BR /&gt;it explicitly means that dbora script is in the current directory.&lt;BR /&gt;&lt;BR /&gt;Also, is this HP-UX or Linux?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;revert&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Fri, 04 Apr 2008 03:09:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173243#M692908</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-04-04T03:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173244#M692909</link>
      <description>Hi,&lt;BR /&gt;Please put the full absolute path of "dbora" and then try.&lt;BR /&gt;su - oracle -c /fullpath/dbora start ORA_DB &lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Aashique</description>
      <pubDate>Fri, 04 Apr 2008 03:23:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173244#M692909</guid>
      <dc:creator>Aashique</dc:creator>
      <dc:date>2008-04-04T03:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173245#M692910</link>
      <description>hi all/yoograj,&lt;BR /&gt;&lt;BR /&gt;thanks  foy u respons&lt;BR /&gt;&lt;BR /&gt;in script it is &lt;BR /&gt;ORACLE_HOME=/u01/app/oracle_OraHome_1&lt;BR /&gt;&lt;BR /&gt;the script directory is &lt;BR /&gt;/sbin/init.sd/&lt;BR /&gt;permission under root &amp;amp; oracle user&lt;BR /&gt;-rwxr-x---   1 root  dba    679 Apr  3 16:39 dbora&lt;BR /&gt;&lt;BR /&gt;This script is ruuning on hp ux 11.23&lt;BR /&gt;&lt;BR /&gt;/usr/bin/csh default shell for oracle &lt;BR /&gt;/user/ust/bin/sh default shell for root&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;rakesh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Apr 2008 07:51:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173245#M692910</guid>
      <dc:creator>rakkesh_1970</dc:creator>
      <dc:date>2008-04-04T07:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173246#M692911</link>
      <description>hi Rakesh,&lt;BR /&gt;&lt;BR /&gt;need to have a look at the dbora script. Did u make any changes?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;revert&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Sat, 05 Apr 2008 04:37:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173246#M692911</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-04-05T04:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173247#M692912</link>
      <description>hi yoograj,&lt;BR /&gt;&lt;BR /&gt;no changes made  till we  posted this issue&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;rakesh</description>
      <pubDate>Sat, 05 Apr 2008 04:46:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173247#M692912</guid>
      <dc:creator>rakkesh_1970</dc:creator>
      <dc:date>2008-04-05T04:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173248#M692913</link>
      <description>hi yoograj,&lt;BR /&gt;&lt;BR /&gt;i think problem with this script &lt;BR /&gt;ssh not able switch  oracle&lt;BR /&gt;&lt;BR /&gt;how i can resolve it&lt;BR /&gt;&lt;BR /&gt;thaanks&lt;BR /&gt;rakesh</description>
      <pubDate>Mon, 07 Apr 2008 05:21:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173248#M692913</guid>
      <dc:creator>rakkesh_1970</dc:creator>
      <dc:date>2008-04-07T05:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173249#M692914</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;ssh not able switch oracle &lt;BR /&gt;&lt;BR /&gt;Where did you find ssh in the script?&lt;BR /&gt;&lt;BR /&gt;Can you post your scripts for review?&lt;BR /&gt;&lt;BR /&gt;revert.&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Tue, 08 Apr 2008 11:19:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173249#M692914</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-04-08T11:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173250#M692915</link>
      <description>hi yoograj,&lt;BR /&gt;&lt;BR /&gt;pls find the script for u review&lt;BR /&gt;&lt;BR /&gt;it works uner oracle user but not works when run  through  root&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;&lt;BR /&gt;Rakesh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;# installation&lt;BR /&gt;export ORACLE_HOME=/u01/app/oracle/OraHome_1&lt;BR /&gt;ORACLE=oracle&lt;BR /&gt;export PATH=${PATH}:$ORACLE_HOME/bin&lt;BR /&gt;HOST=posserve.ciegroup.net&lt;BR /&gt;#&lt;BR /&gt;# change the value of ORACLE to the login name of the&lt;BR /&gt;# oracle owner at your site&lt;BR /&gt;#&lt;BR /&gt;#export ORACLE_HOME PATH&lt;BR /&gt;echo $ORACLE_HOME&lt;BR /&gt;su - oracle&lt;BR /&gt;echo "132312312312"&lt;BR /&gt;##&lt;BR /&gt;#&lt;BR /&gt;LOG=$ORACLE_HOME/startup2.log&lt;BR /&gt;touch $LOG&lt;BR /&gt;chmod a+r $LOG&lt;BR /&gt;#&lt;BR /&gt;case $1 in&lt;BR /&gt;'start')&lt;BR /&gt;echo "$0: starting up" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;# Start Oracle Net&lt;BR /&gt;if [ -f $ORACLE_HOME/bin/tnslsnr ] ;&lt;BR /&gt;then&lt;BR /&gt;echo "starting Oracle Net listener"&lt;BR /&gt;$ORACLE_HOME/bin/lsnrctl start &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;fi&lt;BR /&gt;echo "starting Oracle databases"&lt;BR /&gt;$ORACLE_HOME/bin/dbstart &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;;;&lt;BR /&gt;'stop')&lt;BR /&gt;echo "$0: shutting down" &amp;gt;&amp;gt; $LOG&lt;BR /&gt;date &amp;gt;&amp;gt; $LOG&lt;BR /&gt;# Stop Oracle Net&lt;BR /&gt;if [ -f $ORACLE_HOME/bin/tnslsnr ] ;&lt;BR /&gt;then&lt;BR /&gt;echo "stopping Oracle Net listener"&lt;BR /&gt;$ORACLE_HOME/bin/lsnrctl stop &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;fi&lt;BR /&gt;echo "stopping Oracle databases"&lt;BR /&gt;$ORACLE_HOME/bin/dbshut &amp;gt;&amp;gt; $LOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;;;&lt;BR /&gt;*)&lt;BR /&gt;echo "usage: $0 {start|stop}".&lt;BR /&gt;&lt;BR /&gt;exit&lt;BR /&gt;;;&lt;BR /&gt;esac&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Apr 2008 05:47:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173250#M692915</guid>
      <dc:creator>rakkesh_1970</dc:creator>
      <dc:date>2008-04-10T05:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173251#M692916</link>
      <description>Hi Rakesh,&lt;BR /&gt;&lt;BR /&gt;&amp;gt; it works uner oracle user but not works when run through root&lt;BR /&gt;&lt;BR /&gt;You would not wish to run Oracle Process as the root user!!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Looking at the script, there is one line which must be causing an error:&lt;BR /&gt;su - oracle&lt;BR /&gt;&lt;BR /&gt;I fear that the rest of the script might not be executed properly.&lt;BR /&gt;&lt;BR /&gt;You may wish to correct the script accordingly or I can post a sample Oracle startup scripts that we use here.&lt;BR /&gt;&lt;BR /&gt;revert!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Apr 2008 06:36:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173251#M692916</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-04-10T06:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173252#M692917</link>
      <description>hi  yoograj,&lt;BR /&gt;pls publish  the script&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;rakesh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Apr 2008 10:32:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173252#M692917</guid>
      <dc:creator>rakkesh_1970</dc:creator>
      <dc:date>2008-04-10T10:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173253#M692918</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;please find script attached.&lt;BR /&gt;You will need to amend accordingly.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Thu, 10 Apr 2008 10:46:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173253#M692918</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-04-10T10:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173254#M692919</link>
      <description>attachment</description>
      <pubDate>Thu, 10 Apr 2008 10:48:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173254#M692919</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-04-10T10:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: database startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173255#M692920</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;the environment needs to be configured as described in the document found at:&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/934/startup.pdf" target="_blank"&gt;http://docs.hp.com/en/934/startup.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj &lt;BR /&gt;</description>
      <pubDate>Thu, 10 Apr 2008 10:49:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/database-startup/m-p/4173255#M692920</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-04-10T10:49:39Z</dc:date>
    </item>
  </channel>
</rss>

