fixed bug in Installmip.cmd, test section would never get run and the usage section caused an error.

Massaged the test data so that some base users get added to the test schema, duplicated the seed party data upload so that the Advantica user still exists

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@2897 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
PriestJ
2007-11-28 13:17:46 +00:00
parent 1649327e45
commit 69c2ead1ee
10 changed files with 146 additions and 43 deletions

View File

@@ -6,7 +6,6 @@ if "%3"=="" goto :usage
if "%4"=="" goto :usage
if "%5"=="" goto :usage
@echo Install Schema
sqlplus /nolog @Schema\InstallMIP %1 %2 %3 %4 %5
@@ -24,7 +23,7 @@ cd ..\..
if "%6"=="" goto :done
if "%6"=="demo" goto :demo
if "%6"=="test" doto :test
if "%6"=="test" goto :test
:demo
@echo Demo
@@ -46,7 +45,6 @@ goto :done
:usage
echo usage InstallMIP sys_name sys_password app_name app_password [demo|test]db_connect_string
echo usage InstallMIP sys_name sys_password app_name app_password db_connect_string demo/test
:done