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

  1. :
  2. # $Header: oerr.sh,v 6.5 89/10/12 21:15:42 cyang Exp $ oerr.sh Copyr (c) 1988 Oracle
  3.  
  4. # Usage: oerr facility error
  5. #
  6. # This shell script is used to get the description and the cause and action
  7. # of an error from a message text file when a list of error numbers are passed
  8. # to it.  It supports different lauguage environments and errors from different
  9. # facilities.
  10. #
  11.  
  12. if [ "$ORACLE_TRACE" = "T" ]; then
  13.     set -x
  14. fi
  15.  
  16. if [ ! "$1" ]; then
  17.     echo Usage: $0 facility error
  18.     exit 1
  19. fi
  20.  
  21. # If ORACLE_HOME is not set, we will not be able to locate
  22. # the message text file.
  23. #
  24. if [ ! "$ORACLE_HOME" ]; then
  25.     echo "ORACLE_HOME not set!"
  26.     echo "Please set ORACLE_HOME and try again."
  27.     exit 1
  28. fi
  29.  
  30. FAC=$1
  31. case $FAC in
  32.     ora)
  33.         PRODUCT=rdbms
  34.         ;;
  35.     dba)
  36.         PRODUCT=rdbms
  37.         ;;
  38.     exp)
  39.         PRODUCT=rdbms
  40.         ;;
  41.     imp)
  42.         PRODUCT=rdbms 
  43.         ;;
  44.     lcd)
  45.         PRODUCT=rdbms
  46.         ;;
  47.     iac)
  48.         PRODUCT=forms
  49.         ;;
  50.     iad)
  51.         PRODUCT=forms
  52.         ;;
  53.     iap)
  54.         PRODUCT=forms
  55.         ;;
  56.     iag)
  57.         PRODUCT=forms
  58.         ;;
  59.     typ)
  60.         PRODUCT=forms
  61.         ;;
  62.     srw)
  63.         PRODUCT=sqlreport
  64.         ;;
  65.     *)    
  66.         echo $0: Unknown facility: $1
  67.         exit 1
  68.         ;;
  69. esac
  70.  
  71. LANGUAGE=`echo $LANGUAGE | tr [A-Z] [a-z]`
  72. case $LANGUAGE in
  73.     us*)
  74.         LANG=us
  75.         ;;
  76.     german*)
  77.         LANG=d
  78.         ;;
  79.     french*)
  80.         LANG=f
  81.         ;;
  82.     spanish*)
  83.         LANG=e
  84.         ;;
  85.     danish*)
  86.         LANG=dk
  87.         ;;
  88.     italian*)
  89.         LANG=i
  90.         ;;
  91.     norwegian*)
  92.         LANG=n
  93.         ;;
  94.     dutch*)
  95.         LANG=nl
  96.         ;;
  97.     swedish*)
  98.         LANG=s
  99.         ;;
  100.     finnish*)
  101.         LANG=sf
  102.         ;;
  103.     *)
  104.         LANG=us
  105.         ;;
  106. esac
  107.  
  108. ERRFILE=$ORACLE_HOME/$PRODUCT/mesg/${FAC}${LANG}.msg
  109.  
  110. if [ -r $ERRFILE ]
  111. then
  112.     shift
  113.     for ERR in $*
  114.     do
  115.         awk "BEGIN    { FOUND=0; }
  116.         /^[0]*$ERR/     { FOUND=1; print ; next;}
  117.         /^\/\//        { if (FOUND)
  118.                   {
  119.                     print 
  120.                     next
  121.                   }
  122.                      else
  123.                     next;
  124.                 }
  125.                 { if (FOUND)
  126.                     exit;
  127.                    else
  128.                     next;
  129.                 } " $ERRFILE
  130.  
  131.     done
  132. else
  133.     echo Cannot find $ERRFILE file.
  134. fi
  135.