Files
mip/Schema/InstallSeed.cmd
hardya b99f1de15a Changes to party relationship and contact mechanism areas - use of primary keys, etc.
Changes to all 'role types' tables - now encapsulated within single table ROLE_TYPES.

Minor fixes to attributes for naming consistency, etc.

Included InstallMIP.cmd to perform schema installation.

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@2825 248e525c-4dfb-0310-94bc-949c084e9493
2007-11-08 10:01:07 +00:00

59 lines
747 B
Batchfile

@echo off
if "%1"=="" goto :usage
sqlplus %1 @delete_tables
sqlldr %1 control=alty
sqlldr %1 control=caco
sqlldr %1 control=comt
sqlldr %1 control=enrt
sqlldr %1 control=enst
sqlldr %1 control=enty
sqlldr %1 control=fity
sqlldr %1 control=hoty
sqlldr %1 control=mety
sqlldr %1 control=part
sqlldr %1 control=pcmrt
sqlldr %1 control=prt
sqlldr %1 control=prtp
sqlldr %1 control=qurt
sqlldr %1 control=qust
sqlldr %1 control=rety
sqlldr %1 control=rvty
sqlldr %1 control=svcp
sqlldr %1 control=slty
sqlldr %1 control=cnty
sqlldr %1 control=cnor
sqlldr %1 control=slva
sqlldr %1 control=caca
goto :done
:usage
echo usage InstallSeed user/password@database
:done