mip.sql creates schema objects into schema. InstallSeed.cmd loads seed data (pass username, password and database connection string) git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@2799 248e525c-4dfb-0310-94bc-949c084e9493
19 lines
518 B
Plaintext
19 lines
518 B
Plaintext
LOAD DATA
|
|
INFILE *
|
|
REPLACE
|
|
INTO TABLE party_relationship_types
|
|
FIELDS TERMINATED BY ","
|
|
(
|
|
from_prt_code
|
|
,to_prt_code
|
|
,DESCRIPTION
|
|
)
|
|
BEGINDATA
|
|
AGENT,SUPP,Agent for Service Supplier
|
|
SUPPADMIN,SUPP,Administrator for Supplier
|
|
SUPPADMIN,AGENT,Administrator of agent
|
|
AGENT,SUPPADMIN,Administered by
|
|
MEMBER,INORG,Member of internal organization
|
|
MEMBER,EXTORG,Member of external organization
|
|
ICU,INORG,Handles quotations for internal organization
|
|
CS,INORG,Handles customer enquiries for internal organization |