Files
mip/Schema/ext_dataitem_role.pdc
hardya db78bf5c4c DatabaseItemToFunctionalSpecificationReference.xls - renamed METY_CODE to EXISTING_METY_CODE, included DISPLAY_SEQUENCE to be used in the generation of emails, etc.
Minor internal changes to operation of cout_assert.pck and cout_err.pck.
mip_quotation.pck - made validation routines open to external processes. Added enquiry entry details to manual quotes.

Schema - Removed data_items table and amended data_item_roles to support display_sequence requirements.



git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3407 248e525c-4dfb-0310-94bc-949c084e9493
2008-01-28 18:41:24 +00:00

55 lines
1.1 KiB
Plaintext

DROP TABLE ext_dataitem_roles
/
create table ext_dataitem_roles
(
field_name varchar2(240),
DESCRIPTION varchar2(240),
install varchar2(240),
std_install varchar2(240),
ofmat varchar2(240),
EXCHANGE varchar2(240),
std_exchange varchar2(240),
remove varchar2(240),
std_remove varchar2(240),
adversarial varchar2(240),
alteration varchar2(240),
capacity_change varchar2(240),
addon varchar2(240),
other varchar2(240),
notes VARCHAR2(240),
display_sequence NUMBER
)
ORGANIZATION EXTERNAL
( type oracle_loader
default directory webmip_bulk_load
access parameters
( records delimited by NEWLINE
READSIZE 10485760
skip 1
fields terminated by ','
optionally enclosed BY '"'
missing field values are null
(
field_name ,
DESCRIPTION ,
install ,
std_install ,
ofmat ,
EXCHANGE ,
std_exchange ,
remove ,
std_remove ,
adversarial,
alteration ,
capacity_change ,
addon ,
other ,
notes ,
display_sequence
)
)
location ('DATAITEM_ROLES.csv')
)
reject limit unlimited
/