head	1.3;
access;
symbols;
locks; strict;
comment	@# @;


1.3
date	2000.10.05.21.12.48;	author dlr;	state dead;
branches;
next	1.2;

1.2
date	2000.10.05.15.54.14;	author leonardr;	state Exp;
branches;
next	1.1;

1.1
date	2000.10.04.23.24.54;	author leonardr;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Moved to newhelm/scripts directory.
@
text
@#!/bin/sh

JOIST="${SANDBOX}/joist/sql/org/joist"
HELM="${SANDBOX}/wireopen/sql/org/tigris/helm"

for i in ${JOIST}/joist.sql ${HELM}/helm.sql ${HELM}/populate*.sql
do
 echo "Running ${i}" 
 mysql ${DATABASE_NAME} -u ${DATABASE_USER} -p${DATABASE_PASSWORD} < ${i}
done@


1.2
log
@Generalized script to deal with "population" SQL scripts in helm directory.
@
text
@@


1.1
log
@Runs SQL to add the Joist and Helm tables to the database.
@
text
@d2 9
a10 2
mysql ${DATABASE_NAME} -u ${DATABASE_USER} -p${DATABASE_PASSWORD} < ${SANDBOX}/joist/sql/org/joist/joist.sql
mysql ${DATABASE_NAME} -u ${DATABASE_USER} -p${DATABASE_PASSWORD} < ${SANDBOX}/wireopen/sql/org/tigris/helm/helm.sql
@

