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
This commit is contained in:
hardya
2007-11-08 10:01:07 +00:00
parent 937284c062
commit b99f1de15a
29 changed files with 1056 additions and 998 deletions

20
Schema/InstallMIP.cmd Normal file
View File

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