git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3406 248e525c-4dfb-0310-94bc-949c084e9493
25 lines
347 B
Batchfile
25 lines
347 B
Batchfile
@echo off
|
|
|
|
if "%1"=="" goto :usage
|
|
if "%1"=="sys" goto :usage
|
|
if "%1"=="system" goto :usage
|
|
|
|
sqlplus %1 @delete_demo_data
|
|
sqlldr %1 control=prty
|
|
|
|
sqlldr %1 control=parl
|
|
|
|
sqlldr %1 control=prel
|
|
|
|
sqlldr %1 control=apau
|
|
|
|
sqlplus %1 @create_passwords
|
|
|
|
goto :done
|
|
|
|
:usage
|
|
|
|
echo usage InstallData user/password@database
|
|
|
|
:done
|