Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Always have to do startup force to get db started

Re: Always have to do startup force to get db started

From: Winbatch <winbatch_at_techie.com>
Date: Fri, 9 Aug 2002 07:44:55 -0400
Message-ID: <aj0a02$7og$1@bob.news.rcn.net>


Thanks Rob,
Note that I'm running on AIX. Does this fix still apply?

"rob" <rob_at_dsdelft.nl> wrote in message news:aivo75$3f2$1_at_news.tudelft.nl...
> There is a bug in the dbstart script for version 8.1.6 on UNIX. For
detailed
> info see note 98418.1 on metalink.
> Save the original and change:
>
> VERSION=`$ORACLE_HOME/bin/svrmgrl command=exit | awk '
> /PL\/SQL (Release|Version)/ {substr($3,1,3) ;
> print substr($3,1,3)}'`
>
> to:
>
> VERSION=`$ORACLE_HOME/bin/svrmgrl command=exit | awk '
> /PL\/SQL (Release|Version)/ { print substr($3,1,3); exit }
> /Oracle7 Server (Release|Version)/ { print substr($4,1,3); exit }
> /Oracle8i Enterprise Edition (Release|Version)/ { print substr($5,1,3);
> exit }
> /Oracle8i (Release|Version)/ { print substr($3,1,3); exit }'`
>
> This will do the trick.
>
>
> Rob
>
>
Received on Fri Aug 09 2002 - 06:44:55 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US