home *** CD-ROM | disk | FTP | other *** search
/ Startware 5 / STARTWARE5.ISO / data / ufo / database / sh.dbupdate < prev   
Encoding:
Text File  |  1997-01-29  |  1.3 KB  |  68 lines

  1. #!/bin/bash
  2. #
  3. # Aggiornamento database per CISU
  4. # 1997 by Fabrizio Fiorucci (fiorucci@oasi.asti.it)
  5. #
  6.  
  7. MSQLDIR=/usr/local/Hughes
  8. MSQLBINDIR=$MSQLDIR/bin
  9.  
  10. DBNAME=CISU
  11. SRCFILES="itacat tracat photocat general"
  12.  
  13. SRCDIR=dbf
  14. DUMPDIR=dump
  15.  
  16. #
  17. # Conversione dal separatore "," al separatore ','
  18. # e creazione dump file per l'aggiornamento database
  19. #
  20. for DATABASE in $SRCFILES;
  21. do
  22.  
  23. if [ -f $SRCDIR/$DATABASE.txt ]
  24. then
  25.  
  26.     echo "--> Converting $DATABASE"
  27.  
  28.     cat $SRCDIR/$DATABASE.txt            | \
  29.     escapechars                    | \
  30.     sed s/\"/"INSERT INTO $DATABASE VALUES \(\'"/    | \
  31.     sed s/"\",\""/"\',\'"/g                | \
  32.     sed s/"\","/"\',"/g                | \
  33.     sed s/",\""/",\'"/g                | \
  34.     sed s/\"/"\')"/                    | \
  35.     addbackslash                    | \
  36.     paste - /dev/null -d"g"                > $DUMPDIR/$DATABASE.dump;
  37. else
  38.     echo "--> $DATABASE not found, skipping"
  39. fi
  40.  
  41. done
  42.  
  43. #
  44. # Conversione dei delimitatori campo logical 'S' del database itacat
  45. # da F a 'F' e da T a 'T'
  46. #
  47.  
  48. cat $DUMPDIR/itacat.dump    | \
  49. sed s/",F,"/",'F',"/g        | \
  50. sed s/",T,"/",'T',"/g        > $DUMPDIR/itacat.dump.patch
  51. mv $DUMPDIR/itacat.dump.patch $DUMPDIR/itacat.dump
  52.  
  53. #
  54. # Update dei database
  55. #
  56. for DATABASE in $SRCFILES;
  57. do
  58.  
  59. if [ -f $DUMPDIR/$DATABASE.dump ]
  60. then
  61.     echo "--> Updating $DATABASE"
  62.     $MSQLBINDIR/msql $DBNAME < $DUMPDIR/$DATABASE.dump > /dev/null;
  63. else
  64.     echo "--> $DATABASE not found, skipping"
  65. fi
  66.  
  67. done
  68.