home *** CD-ROM | disk | FTP | other *** search
-
- # $Header: oraenv.sh,v 6.1 89/05/01 14:15:33 rafsarif Exp $ oraenv
- ###################################
- #
- # Copyright 1987 Oracle Corporation
- #
- # usage: . oraenv
- #
- # This routine is used to condition a user's environment for access to
- # an ORACLE database. It will prompt for the value of the new SID unless
- # the variable ORAENV_ASK is set to NO, in which case it will use the
- # current value of ORACLE_SID.
- # The character "*" denotes a null SID.
- #
- # NOTE: Due to constraints of the shell in regard to environment
- # ----- variables, the command MUST be prefaced with ".". If it
- # is not, then no permanent change in the user's environment
- # can take place.
- #
- #####################################
-
- case "$ORACLE_TRACE" in
- T) set -x ;;
- esac
-
- #
- # Determine how to suppress newline with echo command.
- #
- if echo "\c" | grep c >/dev/null 2>&1; then
- N='-n'
- else
- C='\c'
- fi
-
- #
- # Set minimum environment variables
- #
-
- OLDHOME=$ORACLE_HOME
- case "$ORAENV_ASK" in #ORAENV_ASK suppresses prompt when set
- NO) NEWSID="$ORACLE_SID" ;;
- *) case "$ORACLE_SID" in
- "") ORASID=$LOGNAME ;;
- *) ORASID=$ORACLE_SID ;;
- esac
- echo $N "ORACLE_SID = [$ORASID] ? $C"
- read NEWSID
- case "$NEWSID" in
- "") ORACLE_SID="$ORASID" ;;
- *) ORACLE_SID="$NEWSID" ;;
- esac ;;
- esac
- export ORACLE_SID
-
- ORAHOME=`dbhome "$ORACLE_SID"`
- case $? in
- 0) ORACLE_HOME=$ORAHOME ;;
- *) echo $N "ORACLE_HOME = [$ORAHOME] ? $C"
- read NEWHOME
- case "$NEWHOME" in
- "") ORACLE_HOME=$ORAHOME ;;
- *) ORACLE_HOME=$NEWHOME ;;
- esac ;;
- esac
-
- export ORACLE_HOME
-
- #
- # Put new ORACLE_HOME in path and remove old one
- #
-
- case "$OLDHOME" in
- "") OLDHOME=$PATH ;; #This makes it so that null OLDHOME can't match
- esac #anything in next case statement
-
- case "$PATH" in
- *$OLDHOME/bin*) PATH=`echo $PATH | \
- sed "s;$OLDHOME/bin;$ORACLE_HOME/bin;g"` ;;
- *$ORACLE_HOME/bin*) ;;
- *:) PATH=${PATH}$ORACLE_HOME/bin: ;;
- "") PATH=$ORACLE_HOME/bin ;;
- *) PATH=$PATH:$ORACLE_HOME/bin ;;
- esac
-
- export PATH
-
- #
- # Install any "custom" code here
- #
-
- # Locate "osh" and exec it if found
- ULIMIT=`(ulimit) 2>/dev/null`
- if [ $? = 0 -a "$ULIMIT" -lt 2113674 ] ; then
- if [ -f $ORACLE_HOME/bin/osh ] ; then
- exec $ORACLE_HOME/bin/osh
- else
- for D in `echo $PATH | tr : " "`
- do
- if [ -f $D/osh ] ; then
- exec $D/osh
- fi
- done
- fi
- fi
-