17 lines
607 B
Bash
17 lines
607 B
Bash
|
# $Id: RUN_DBRestore.sh,v 1.9 2005/01/22 21:59:15 jjanke Exp $
|
||
|
if [ $ADEMPIERE_HOME ]; then
|
||
|
cd $ADEMPIERE_HOME/utils
|
||
|
fi
|
||
|
. ./myEnvironment.sh Server
|
||
|
echo Restore Adempiere Database from Export- $ADEMPIERE_HOME \($ADEMPIERE_DB_NAME\)
|
||
|
|
||
|
|
||
|
echo Re-Create Adempiere User and import $ADEMPIERE_HOME/data/ExpDat.dmp
|
||
|
echo == The import will show warnings. This is OK ==
|
||
|
ls -lsa $ADEMPIERE_HOME/data/ExpDat.dmp
|
||
|
echo Press enter to continue ...
|
||
|
read in
|
||
|
|
||
|
# Parameter: <systemAccount> <adempiereID> <adempierePwd>
|
||
|
sh $ADEMPIERE_DB_PATH/DBRestore.sh system/$ADEMPIERE_DB_SYSTEM $ADEMPIERE_DB_USER $ADEMPIERE_DB_PASSWORD
|