core-jgi/migration/migrate.sh

30 lines
800 B
Bash

#!/bin/sh
# This formats all the SQL files in the specified directory so that
# they can be executed by SQL*Plus. There are two modes -- a 'testing'
# mode (the default mode -- this stips out all the "commit" statements)
# and a commit mode for deployment. You need to pipe the output of this
# script into sqlplus, for example:
# ./migrate.sh 313-314 commit | sqlplus adempiere/adempiere
# Contributed by Chris Farley - northernbrewer
if [ -z "$1" ]; then
echo "Usage: $0 DIRECTORY [commit]"
exit 0
fi
echo "SET SQLBLANKLINES ON"
echo "SET DEFINE OFF"
echo "SPOOL $1"
for file in `ls $1`; do
echo "SELECT '$file' AS Filename FROM dual;"
dos2unix $1/$file
cat $1/$file | sed 's/commit[ ]*;//I'
echo
done
if [ "$2" = "commit" ]; then
echo "COMMIT;"
else
echo "ROLLBACK;"
fi