19 lines
785 B
Bash
19 lines
785 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>
|
|
# globalqss - cruiz - 2007-10-09 - added fourth parameter for postgres(ignored in oracle)
|
|
sh $ADEMPIERE_DB_PATH/DBRestore.sh system/$ADEMPIERE_DB_SYSTEM $ADEMPIERE_DB_USER $ADEMPIERE_DB_PASSWORD $ADEMPIERE_DB_SYSTEM
|
|
|
|
sh $ADEMPIERE_HOME/utils/RUN_SignDatabaseBuild.sh > /dev/null 2>&1 |