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

  1.  
  2. # $Header: dbhome.sh,v 6.1 89/08/01 01:30:59 cyang Exp $ dbhome
  3.  
  4. ###################################
  5. # Copyright 1987 Oracle Corp
  6. #
  7. # usage: ORACLE_HOME=`dbhome [SID]`
  8. # NOTE:  A NULL SID is specified with "" on the command line
  9. #
  10. # The only sane way to use this script is with SID specified on the 
  11. # command line or to have ORACLE_SID set for the database you are looking
  12. # for.  The return code will be 1 if dbhome can't find ANY value, 2 if
  13. # it finds a questionable value, 0 if it finds a good one (ie. out of
  14. # /etc/oratab).
  15. #
  16. # If ORACLE_SID is set or provided on the command line the script
  17. # will write to the standard output the first of the following that
  18. # it finds:
  19. #    1.  The value of the 2nd field in /etc/oratab where the
  20. #        value of the 1st field equals $ORACLE_SID.
  21. #    2.  The home directory for the user 'oracle' in /etc/passwd
  22. #        or in the yellow pages password entries.
  23. #
  24. # If ORACLE_SID is not set and not provided on the command line the 
  25. # script will write to the standard output the first of the following
  26. # that it finds:
  27. #    1.  The current value of ORACLE_HOME if not null.
  28. #    2.  The home directory for the user 'oracle' in /etc/passwd
  29. #        or in the yellow pages password entries.
  30. #
  31. # This script currently uses no hard-coded defaults for ORACLE_SID or
  32. # ORACLE_HOME.
  33. #
  34. #####################################
  35.  
  36. case "$ORACLE_TRACE" in
  37.     T)    set -x ;;
  38. esac
  39.  
  40. trap '' 1
  41.  
  42. RET=0
  43. ORAHOME=""
  44. ORASID=${ORACLE_SID-NOTSET}
  45. ORASID=${1-$ORASID}
  46. ORATAB=/etc/oratab
  47. PASSWD=/etc/passwd
  48. PASSWD_MAP=passwd.byname
  49.  
  50. case "$ORASID" in
  51.     NOTSET)    # ORACLE_SID not passed in and not in environment
  52.         RET=2
  53.         ORAHOME="$ORACLE_HOME" ;;
  54.  
  55.     *)    # ORACLE_SID was set or provided on the command line
  56.         if test -f $ORATAB ; then
  57.         # Try for a match on ORASID in /etc/oratab
  58.         # NULL SID is * in /etc/oratab
  59.         case "$ORASID" in
  60.         "")    ORASID='\*' ;;
  61.         esac
  62.  
  63.         ORAHOME=`awk -F: "/^${ORASID}:/ {print \\$2; exit}"\
  64.             $ORATAB 2>/dev/null`
  65.     fi ;;
  66. esac
  67.  
  68. case "$ORAHOME" in
  69.     "")    # Not found in /etc/oratab or ORACLE_HOME not set;
  70.        # try /etc/passwd & yp for "oracle"
  71.     RET=2
  72.         ORAHOME=`awk -F: '/^oracle:/ {print $6; exit}' $PASSWD`
  73.     case "$ORAHOME" in
  74.         "")    ORAHOME=`(ypmatch oracle $PASSWD_MAP) 2>/dev/null | \
  75.             awk -F: '/^oracle:/ {print $6; exit}'`
  76.         case "$ORAHOME" in
  77.             "")    echo "Cannot locate ORACLE_HOME." 1>&2
  78.             exit 1 ;;
  79.         esac ;;
  80.     esac ;;
  81. esac
  82.  
  83. echo $ORAHOME
  84. exit $RET
  85.