<?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: Run The Database Automatically in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341050#M343554</link>
    <description>&amp;gt;but this script it is working or no?&lt;BR /&gt;./dbora[17]: i#: not found.&lt;BR /&gt;+ [ ! = ORA_DB ]&lt;BR /&gt;&lt;BR /&gt;This isn't working.  Where is this "i#"?</description>
    <pubDate>Tue, 20 Jan 2009 11:38:21 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2009-01-20T11:38:21Z</dc:date>
    <item>
      <title>Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341047#M343551</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;how i can up the database automatic after reboot or restart the server &lt;BR /&gt;i mean after restart the server i don't want refer to DBA to run the database, only i need a script or something to make a server to run the database automatically    &lt;BR /&gt;only i need the DBA when i want to shutdown the database.&lt;BR /&gt;how i can do it that?&lt;BR /&gt;&lt;BR /&gt;thanks and best regards</description>
      <pubDate>Tue, 20 Jan 2009 11:12:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341047#M343551</guid>
      <dc:creator>Mousa55</dc:creator>
      <dc:date>2009-01-20T11:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341048#M343552</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;that should not be too difficult.&lt;BR /&gt;&lt;BR /&gt;See post at the following thread:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1218941" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1218941&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;if you need any further assistance, please do let us know.&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Tue, 20 Jan 2009 11:21:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341048#M343552</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2009-01-20T11:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341049#M343553</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;but this script it is working or no?&lt;BR /&gt;and my OS 11.11 and 9i database&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</description>
      <pubDate>Tue, 20 Jan 2009 11:35:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341049#M343553</guid>
      <dc:creator>Mousa55</dc:creator>
      <dc:date>2009-01-20T11:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341050#M343554</link>
      <description>&amp;gt;but this script it is working or no?&lt;BR /&gt;./dbora[17]: i#: not found.&lt;BR /&gt;+ [ ! = ORA_DB ]&lt;BR /&gt;&lt;BR /&gt;This isn't working.  Where is this "i#"?</description>
      <pubDate>Tue, 20 Jan 2009 11:38:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341050#M343554</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-01-20T11:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341051#M343555</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;How to make my server to start/shutdown the database automatically.&lt;BR /&gt;&lt;BR /&gt;thanks</description>
      <pubDate>Tue, 20 Jan 2009 11:44:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341051#M343555</guid>
      <dc:creator>Mousa55</dc:creator>
      <dc:date>2009-01-20T11:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341052#M343556</link>
      <description>Refer to the documentation for the database package(s) you're using.  If the database(s) can be started at system boot time, then their manuals should state the way to set up the /sbin/init.d/[whatever] script and where to link it under the /sbin/rc[0-4].d hierarchy.</description>
      <pubDate>Tue, 20 Jan 2009 17:00:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341052#M343556</guid>
      <dc:creator>Michael Mike Reaser</dc:creator>
      <dc:date>2009-01-20T17:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341053#M343557</link>
      <description>&amp;gt; How to make my server to start/shutdown the database automatically.&lt;BR /&gt;&lt;BR /&gt;You may wish to follow guidelines found at this url:&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;&lt;BR /&gt;hope this help!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Wed, 21 Jan 2009 04:37:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341053#M343557</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2009-01-21T04:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341054#M343558</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;thanks for all, but Is there any script ready?&lt;BR /&gt;and then change it to match my system.&lt;BR /&gt;&lt;BR /&gt;thanks again</description>
      <pubDate>Wed, 21 Jan 2009 04:50:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341054#M343558</guid>
      <dc:creator>Mousa55</dc:creator>
      <dc:date>2009-01-21T04:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341055#M343559</link>
      <description>&amp;gt;but is there any script ready?&lt;BR /&gt;&lt;BR /&gt;There is a rc(1m) template in /sbin/init.d/template.</description>
      <pubDate>Wed, 21 Jan 2009 06:04:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341055#M343559</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-01-21T06:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Run The Database Automatically</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341056#M343560</link>
      <description>*somebody* starts it and stops it today.  You, the dba or ???&lt;BR /&gt;&lt;BR /&gt;find out what they have to run to start it.  Find out what they have to run to stop it.&lt;BR /&gt;&lt;BR /&gt;then use a "rc template" file to do the actual work...</description>
      <pubDate>Wed, 21 Jan 2009 21:02:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/run-the-database-automatically/m-p/4341056#M343560</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-01-21T21:02:10Z</dc:date>
    </item>
  </channel>
</rss>

