|
tnsping does not check for database up, its nothing more than a ping to a
listener, they only sure way to see if the database is up is to connect to
it.
and its still that way in 9i.
joe
>>> [EMAIL PROTECTED] 09/18/01 02:40PM >>> Hi Barry! We use the Oracle supplied program tnsping as in the following shell script snippet : --------------------------------------------------------- #!/bin/sh PATH=/bin:/usr/bin:/$ORACLE_HOME/bin export PATH # get SQL*NET alias from first argument or use ORCL as default oradb=${1:ORCL} if $ORACLE_HOME/bin/tnsping $oradb >/dev/null 2>&1 then echo "database $oradb is up" else echo "database $oradb is down ( tnsping returned $?)" fi --------------------------------------------------------- Hope this helps, Andreas > ---------- > Von: Barry Deevey[SMTP:[EMAIL PROTECTED]] > Gesendet: Dienstag, 18. September 2001 17:45 > An: Multiple recipients of list ORACLE-L > Betreff: Determining Oracle status > > Hi all, > > I am trying to write a script in unix that determines if a specific oracle > instance is available. I'm trying to avoid using the 'ps' command, so I > thought the easiest method would be to connect via sqlplus - If it > connects > its up, if it doesn't then its unavailable. However, the problem is that > when it isn't up, the script hangs and does not return anything - I think > that this is because sqlplus by default gives you 3 attempts to logon, so > even though the logon attempt failed, it is waiting for you to try again, > so > unfortunately I'm not getting a failed return code. > If anybody could tell me how to change this so that it only allows 1 login > attempt before 'kicking you out' or whether there is a better method to > finding out the status of an instance, I would be extremely grateful to > hear > from you. > > TIA for any responses. > > Best Regards, > Barry. > > > -- > Please see the official ORACLE-L FAQ: http://www.orafaq.com > -- > Author: Barry Deevey > INET: [EMAIL PROTECTED] > > Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 > San Diego, California -- Public Internet access / Mailing Lists > -------------------------------------------------------------------- > To REMOVE yourself from this mailing list, send an E-Mail message > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in > the message BODY, include a line containing: UNSUB ORACLE-L > (or the name of mailing list you want to be removed from). You may > also send the HELP command for other information (like subscribing). > -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Haunschmidt Andreas VASL/FAS INET: [EMAIL PROTECTED] Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). |
- Determining Oracle status Barry Deevey
- Re: Determining Oracle status Gene Sais
- RE: Determining Oracle status Grabowy, Chris
- RE: Determining Oracle status Haunschmidt Andreas VASL/FAS
- Re:Determining Oracle status dgoulet
- RE: Determining Oracle status Smith, Ron L.
- RE: Determining Oracle status Nick Wagner
- Re: Determining Oracle status JOE TESTA
- Re: Determining Oracle status DBarbour
- Re:RE: Determining Oracle status dgoulet
- Re:Determining Oracle status DBarbour
- RE: Determining Oracle status Glenn Travis
- RE: Determining Oracle status Vergara, Michael (TEM)
- Re: Determining Oracle status Richard Ji
- RE: Determining Oracle status Deshpande, Kirti
- RE: Determining Oracle status Christopher Spence
- Re: Determining Oracle status Sakthi , Raj
- RE: Determining Oracle status Thomas, Kevin
