Files
mip/Schema/InstallMIP.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

21 lines
331 B
Batchfile

@echo off
if "%1"=="" goto :usage
if "%2"=="" goto :usage
if "%3"=="" goto :usage
if "%4"=="" goto :usage
if "%5"=="" goto :usage
sqlplus /nolog @InstallMIP %1 %2 %3 %4 %5
InstallSeed %3/%4@%5
goto :done
:usage
echo usage InstallMIP sys_name sys_password app_name app_password db_connect_string
:done