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

  1. :
  2. #
  3. #  $Header: pupbld.sh.120,v 1.2 89/07/18 12:30:22 dosterbe Exp $ src60 sqlplus sqlplus/install pupbld.sh 120 Copyr (c) 1988 Oracle Corporation 
  4. #
  5. #
  6. # pupbld - command file to install the PRODUCT_USER_PROFILE tables
  7. #
  8.  
  9. #
  10. #  Display abort message on interupt.
  11. #
  12. trap 'echo "^G^G Product_User_Profile 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 profile 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 profile installation." | tee -a $LOG
  44.         exit 1 ;;
  45. esac
  46. echo ""
  47. echo "Installing product user profile tables..."
  48. echo ""
  49. PUPBLD=$ORACLE_HOME/sqlplus/admin/pupbld
  50. sqlplus  $SYSTEM_PASS >> $LOG 2> /dev/null  <<!
  51.     start $PUPBLD
  52.     exit
  53. !
  54. echo "Product user profile tables installed."
  55. echo ""
  56.