The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > OS Specific Forums > HP-UX
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 04-12-2008
jim mcnamara jim mcnamara is offline
...@...
 

Join Date: Feb 2004
Location: NM
Posts: 3,854
Code:
echo " file name \c"
read filename
grep 'ORA-12545' $filename |\
while read result
do
        IFS=: && echo "$result" | read filename message
        echo "File: $file $message  Please contact DBA"
done

Last edited by jim mcnamara; 04-14-2008 at 03:04 AM.
Reply With Quote