Replaced Access_Controls with APEX_AUTHORISATION Created POSTCODES, ERROR_LOGS and SYSTEM_CONFIGURATION. Added missing columns to ENQUIRIES, REGULATORS, etc. Added views V_PROFILE_RT_CODE_FOR_ENRO.vw, V_PARTY_RELATIONSHIPS.vw, V_LATEST_RT_CODE_FOR_ENRO.vw. Modules: Added cout_err.pck, cout_system_configuration.pck. Data: Added Data/Demo files Added Data/Seed files for postcodes, regions and DatabaseItemToFunctionalSpecificationReference.csv Documentation: Added Documentation/pldoc for plsqldoc-generated files. Added Documentation/SupportingDocumentation/Regions to hold region definition information. git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@2890 248e525c-4dfb-0310-94bc-949c084e9493
22 lines
295 B
Batchfile
22 lines
295 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
|
|
|
|
goto :done
|
|
|
|
:usage
|
|
|
|
echo usage InstallDemoData user/password@database
|
|
|
|
:done
|