Changes made to support Bulk Load.
git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3255 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
26
Schema/ext_postcode.pdc
Normal file
26
Schema/ext_postcode.pdc
Normal file
@@ -0,0 +1,26 @@
|
||||
DROP TABLE ext_postcodes
|
||||
/
|
||||
create table ext_postcodes
|
||||
(
|
||||
field_1 varchar2(240),
|
||||
field_2 varchar2(240)
|
||||
)
|
||||
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_1,
|
||||
field_2
|
||||
)
|
||||
)
|
||||
location ('POSTCODES.csv')
|
||||
)
|
||||
reject limit unlimited
|
||||
/
|
||||
Reference in New Issue
Block a user