Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Unix script to check database status
Hi,
I have a pair of scripts who show me some information about the status of my instances.
#1 script ( named activ_DB)
clear
echo 'Data Base list (Active Instances)' echo '---------------------------------------------' echo '---------------------------------------------' echo ' '
test_BD | egrep -e 'MINW|MINJ|LNEC'
echo ' ' echo ' ' echo ' ' echo ' ' echo ' '
#echo ' ' + test_BD | egrep -e 'MINW|MINJ|LNEC'
--------------- cut here ---------------------
#2 script (named test_BD)
--------------- cut here ---------------------
svrmgrl <<EOF
connect internal
select name, log_mode, open_mode from v_\$database;
exit
EOF
#3
#
#!/bin/ksh
export ORACLE_SID=MINJ
export ORACLE_HOME=/oracle
export PATH=$ORACLE_HOME/bin:$PATH
svrmgrl <<EOF
connect internal
select name, log_mode, open_mode from v_\$database;
exit
EOF
#
#
#!/bin/ksh
export ORACLE_SID=LNEC
export ORACLE_HOME=/oracle
export PATH=$ORACLE_HOME/bin:$PATH
svrmgrl <<EOF
connect internal
select name, log_mode, open_mode from v_\$database;
exit
EOF
--------------- cut here ---------------------
Hope it helps somebody
Dias Costa
P.S.: Sorry. Forgot to say i found this scripts
somewhere, sometime in this list and i don't remember who is his author. ----------------------------------------------------------------Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Wed Mar 10 2004 - 04:32:20 CST
![]() |
![]() |