home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 4.ddi / dbshut < prev    next >
Encoding:
Text File  |  1991-09-22  |  1.5 KB  |  61 lines

  1.  
  2. # $Header: dbshut.sh,v 6.0 88/06/09 17:28:21 kdonn Exp $ dbstart Copyr (c) 1987 Oracle
  3.  
  4. ###################################
  5. # usage: dbshut
  6. #
  7. # This script is used to shutdown ORACLE from /etc/rc(.local).
  8. # It should ONLY be executed as part of the system boot procedure.
  9. #
  10. #####################################
  11.  
  12. trap 'exit' 1 2 3
  13. case $ORACLE_TRACE in
  14.     T)    set -x ;;
  15. esac
  16.     
  17. # Set path if path not set (if called from /etc/rc)
  18. case $PATH in
  19.     "")    PATH=/bin:/usr/bin:/etc
  20.     export PATH ;;
  21. esac
  22.  
  23. #
  24. # Loop for every entry in /etc/oratab file and and try to start
  25. # that ORACLE
  26. #
  27.  
  28. cat /etc/oratab | while read LINE
  29. do
  30.     case $LINE in
  31.     \#*)        ;;    #comment-line in /etc/oratab
  32.     *)
  33. #       Proceed only if third field is 'Y'.
  34.         if [ "`echo $LINE | awk -F: '{print $3}' -`" = "Y" ] ; then
  35.             ORACLE_SID=`echo $LINE | awk -F: '{print $1}' -`
  36.         if [ "$ORACLE_SID" = '*' ] ; then
  37.         ORACLE_SID=""
  38.         fi
  39. #           Called programs use same database ID
  40.             export ORACLE_SID
  41.             ORACLE_HOME=`echo $LINE | awk -F: '{print $2}' -`
  42. #           Called scripts use same home directory
  43.             export ORACLE_HOME
  44. #           Put $ORACLE_HOME/bin into PATH and export.
  45.             PATH=$ORACLE_HOME/bin:/bin:/usr/bin:/etc ; export PATH
  46.  
  47.             PFILE=${ORACLE_HOME}/dbs/init${ORACLE_SID}.ora
  48.  
  49.         if sqldba command=shutdown ; then
  50.         echo "Database \"${ORACLE_SID}\" shut down."
  51.         else
  52.         echo "Database \"${ORACLE_SID}\" not shut down."
  53.         fi
  54.         fi
  55.     ;;
  56.     esac
  57. done
  58.