added fat build scripts for the FAT environment, it works!, I had to create a workspace to create the application in. Also had to manually copy the images and css to the application.

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3406 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
PriestJ
2008-01-28 18:33:23 +00:00
parent b60557ab63
commit 34575be877
16 changed files with 627 additions and 1 deletions

24
Data/fat/InstallData.cmd Normal file
View File

@@ -0,0 +1,24 @@
@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