boot
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:1k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. #
  3. # boot :  create DB directories, initialize DB segments, 
  4. #         run DB manager in background and call bin/base utility
  5. #         to create set of DB system tables.
  6. #           
  7. # This file is a part of GNU SQL Server
  8. #
  9. # Copyright (c) 1996, 1997 Free Software Foundation, Inc.
  10. # This file is written by Michael Kimelman.
  11. #
  12. # Contacts: gss@ispras.ru
  13. #
  14. if [ "x$1" = "x" ] ; then 
  15.   X=`ls gsqls`
  16.   if [ "x$X" = "xgsqls" ] ; then
  17.     SER=.
  18.   else
  19.     SER=$GSQL/sqlser
  20.   fi
  21. else
  22.   SER=$1
  23. fi
  24. cd $SER
  25. pwd
  26. bin/finadm 
  27. sleep 1
  28. # bin/dq 
  29. rm -r -f jarchive db gmon.out gdbinit
  30. find . -name core -exec rm {} ;
  31. mkdir jarchive
  32. mkdir db
  33. ls -al
  34. bin/prepup
  35. ./gsqls &
  36. sleep 10 ## it is better to configure this timeout
  37. bin/base </dev/null
  38. sleep 2
  39. echo =====================================
  40. exit
  41. sleep 10
  42. ./bin/finadm 
  43. sleep 1
  44. echo =====================================