38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
echo Adempiere Database Restore $Revision: 1.2 $
|
|
|
|
# $Id: DBRestore.sh,v 1.2 2005/01/22 21:59:15 jjanke Exp $
|
|
|
|
echo Restoring Adempiere DB from $ADEMPIERE_HOME/data/ExpDat.dmp
|
|
|
|
if [ $# -le 2 ]
|
|
then
|
|
echo "Usage: $0 <systemAccount> <AdempiereID> <AdempierePWD>"
|
|
echo "Example: $0 system/manager adempiere adempiere"
|
|
exit 1
|
|
fi
|
|
if [ "$ADEMPIERE_HOME" = "" -o "$ADEMPIERE_DB_NAME" = "" ]
|
|
then
|
|
echo "Please make sure that the environment variables are set correctly:"
|
|
echo " ADEMPIERE_HOME e.g. /Adempiere"
|
|
echo " ADEMPIERE_DB_NAME e.g. adempiere.adempiere.org"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
echo -------------------------------------
|
|
echo Re-Create DB user
|
|
echo -------------------------------------
|
|
sqlplus $1@$ADEMPIERE_DB_NAME @$ADEMPIERE_HOME/utils/CreateUser.sql $2 $3
|
|
|
|
echo -------------------------------------
|
|
echo Import ExpDat
|
|
echo -------------------------------------
|
|
imp $1@$ADEMPIERE_DB_NAME FILE=$ADEMPIERE_HOME/data/ExpDat.dmp FROMUSER=($2) TOUSER=$2
|
|
|
|
echo -------------------------------------
|
|
echo Check System
|
|
echo Import may show some warnings. This is OK as long as the following does not show errors
|
|
echo -------------------------------------
|
|
sqlplus $2/$3@$ADEMPIERE_DB_NAME @$ADEMPIERE_HOME/utils/AfterImport.sql
|
|
|