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

  1. :
  2. #
  3. #  $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 
  4. #
  5. #
  6. # helpins - command file to install help tables using "ODL".
  7. #
  8.  
  9. #
  10. #  Display abort message on interupt.
  11. #
  12. trap 'echo "^G^G help Installation Aborted!"; exit' 1 2 3 15
  13.  
  14. #
  15. #  Allow verification/trace to be turned on and off.
  16. #  When verification is off, the default case, invoke sqlplus with the
  17. #  -silent option.
  18. case "$ORACLE_TRACE" in
  19.     "T")        set -x ;;
  20.      *)        SILENT="-s" ;;
  21. esac
  22.  
  23. #
  24. #  If LOG is not set, then send output to /dev/null.
  25. #
  26. case $LOG in
  27.     "") LOG=/dev/null ;;
  28. esac
  29.  
  30. #
  31. #  Check to make sure that required variables are set.
  32. #  If they are not, prompt user to set them and restart install.
  33. #
  34.  
  35. case $ORACLE_HOME in
  36.     "") echo "ORACLE_HOME not set."
  37.         echo "Set and export ORACLE_HOME, then restart help installation." | tee -a $LOG
  38.         exit 1 ;;
  39. esac
  40.  
  41. case $SYSTEM_PASS in
  42.     "") echo "SYSTEM_PASS not set."
  43.         echo "Set and export SYSTEM_PASS, then restart help installation." | tee -a $LOG
  44.         exit 1 ;;
  45. esac
  46.  
  47. HELPDIR=$ORACLE_HOME/sqlplus/admin/help
  48. CDIR=`pwd`
  49.  
  50. sqlplus $SILENT $SYSTEM_PASS <<!
  51.     start $HELPDIR/helptbl.sql
  52. !
  53.  
  54. cd $HELPDIR
  55.  
  56. sqlload userid=$SYSTEM_PASS control=plushelp.ctl log=$CDIR/plusload.log bad=$CDIR/plusload.bad rows=1024 bindsize=512000
  57.  
  58. cd $CDIR
  59. sqlplus $SILENT $SYSTEM_PASS  <<!
  60.     start $HELPDIR/helpindx.sql
  61. !
  62.