home *** CD-ROM | disk | FTP | other *** search
- :
- #
- # $Header: helpins.sh.120,v 1.4 89/08/22 13:32:19 dosterbe Exp $ base sqlplus sqlplus/utl helpins.sh 120 Copyr (c) 1988 Oracle Corporation
- #
- #
- # helpins - command file to install help tables using "ODL".
- #
-
- #
- # Display abort message on interupt.
- #
- trap 'echo "^G^G help Installation Aborted!"; exit' 1 2 3 15
-
- #
- # Allow verification/trace to be turned on and off.
- # When verification is off, the default case, invoke sqlplus with the
- # -silent option.
- case "$ORACLE_TRACE" in
- "T") set -x ;;
- *) SILENT="-s" ;;
- esac
-
- #
- # If LOG is not set, then send output to /dev/null.
- #
- case $LOG in
- "") LOG=/dev/null ;;
- esac
-
- #
- # Check to make sure that required variables are set.
- # If they are not, prompt user to set them and restart install.
- #
-
- case $ORACLE_HOME in
- "") echo "ORACLE_HOME not set."
- echo "Set and export ORACLE_HOME, then restart help installation." | tee -a $LOG
- exit 1 ;;
- esac
-
- case $SYSTEM_PASS in
- "") echo "SYSTEM_PASS not set."
- echo "Set and export SYSTEM_PASS, then restart help installation." | tee -a $LOG
- exit 1 ;;
- esac
-
- HELPDIR=$ORACLE_HOME/sqlplus/admin/help
- CDIR=`pwd`
-
- sqlplus $SILENT $SYSTEM_PASS <<!
- start $HELPDIR/helptbl.sql
- !
-
- cd $HELPDIR
-
- sqlload userid=$SYSTEM_PASS control=plushelp.ctl log=$CDIR/plusload.log bad=$CDIR/plusload.bad rows=1024 bindsize=512000
-
- cd $CDIR
- sqlplus $SILENT $SYSTEM_PASS <<!
- start $HELPDIR/helpindx.sql
- !
-