#!/bin/tcsh
# designed to be executed by MySQL super user
# create user and database of the GNP Proration System proration database.
# MySQL server postmaster must be running
set PWD=`echo $0:h`
set HOST=localhost
#cat $PWD/../sql/drop_database.sql | mysql -h $HOST -u gnp --password=gnp gnp
cat $PWD/../sql/drop_database.sql | mysql -h $HOST -u gnp --password=gnp
