home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 19.ddi / oraenv next >
Encoding:
Text File  |  1991-09-22  |  2.3 KB  |  105 lines

  1.  
  2. # $Header: oraenv.sh,v 6.1 89/05/01 14:15:33 rafsarif Exp $ oraenv
  3. ###################################
  4. # Copyright 1987 Oracle Corporation
  5. #
  6. # usage: . oraenv
  7. #
  8. # This routine is used to condition a user's environment for access to
  9. # an ORACLE database. It will prompt for the value of the new SID unless
  10. # the variable ORAENV_ASK is set to NO, in which case it will use the
  11. # current value of ORACLE_SID.
  12. # The character "*" denotes a null SID.
  13. #
  14. # NOTE:        Due to constraints of the shell in regard to environment
  15. # -----        variables, the command MUST be prefaced with ".". If it
  16. #        is not, then no permanent change in the user's environment
  17. #        can take place.
  18. #
  19. #####################################
  20.  
  21. case "$ORACLE_TRACE" in
  22.     T)    set -x ;;
  23. esac
  24.  
  25. #
  26. # Determine how to suppress newline with echo command.
  27. #
  28. if echo "\c" | grep c >/dev/null 2>&1; then
  29.     N='-n'
  30. else
  31.     C='\c'
  32. fi
  33.  
  34. #
  35. # Set minimum environment variables
  36. #
  37.  
  38. OLDHOME=$ORACLE_HOME
  39. case "$ORAENV_ASK" in            #ORAENV_ASK suppresses prompt when set
  40.     NO)    NEWSID="$ORACLE_SID" ;;
  41.     *)    case "$ORACLE_SID" in
  42.         "")    ORASID=$LOGNAME ;;
  43.         *)    ORASID=$ORACLE_SID ;;
  44.     esac
  45.     echo $N "ORACLE_SID = [$ORASID] ? $C"
  46.     read NEWSID
  47.     case "$NEWSID" in
  48.         "")        ORACLE_SID="$ORASID" ;;
  49.         *)            ORACLE_SID="$NEWSID" ;;        
  50.     esac ;;
  51. esac
  52. export ORACLE_SID
  53.  
  54. ORAHOME=`dbhome "$ORACLE_SID"`
  55. case $? in
  56.     0)    ORACLE_HOME=$ORAHOME ;;
  57.     *)    echo $N "ORACLE_HOME = [$ORAHOME] ? $C"
  58.     read NEWHOME
  59.     case "$NEWHOME" in
  60.         "")    ORACLE_HOME=$ORAHOME ;;
  61.         *)    ORACLE_HOME=$NEWHOME ;;
  62.     esac ;;
  63. esac
  64.  
  65. export ORACLE_HOME 
  66.  
  67. #
  68. # Put new ORACLE_HOME in path and remove old one
  69. #
  70.  
  71. case "$OLDHOME" in
  72.     "")    OLDHOME=$PATH ;;    #This makes it so that null OLDHOME can't match
  73. esac                #anything in next case statement
  74.  
  75. case "$PATH" in
  76.     *$OLDHOME/bin*)    PATH=`echo $PATH | \
  77.                 sed "s;$OLDHOME/bin;$ORACLE_HOME/bin;g"` ;;
  78.     *$ORACLE_HOME/bin*)    ;;
  79.     *:)            PATH=${PATH}$ORACLE_HOME/bin: ;;
  80.     "")            PATH=$ORACLE_HOME/bin ;;
  81.     *)            PATH=$PATH:$ORACLE_HOME/bin ;;
  82. esac
  83.  
  84. export PATH 
  85.  
  86. #
  87. # Install any "custom" code here
  88. #
  89.  
  90. # Locate "osh" and exec it if found
  91. ULIMIT=`(ulimit) 2>/dev/null`
  92. if [ $? = 0 -a "$ULIMIT" -lt 2113674 ] ; then
  93.     if [ -f $ORACLE_HOME/bin/osh ] ; then
  94.     exec $ORACLE_HOME/bin/osh
  95.     else
  96.     for D in `echo $PATH | tr : " "`
  97.     do
  98.         if [ -f $D/osh ] ; then
  99.         exec $D/osh
  100.         fi
  101.     done
  102.     fi
  103. fi
  104.