SQLLDR and Lat Lon points
LOAD DATA
infile 'nodes.csv'
into table mps
fields terminated by ','
(name,
geometry column object
(sdo_point column object(lon float external, lat float external)
))
I have not been able to find any good examples and here are my errors :
SQL*Loader-404: Column present more than once in MPS's INTO TABLE block.
or
SQL*Loader-466: Column GEOMETRY does not exist in table MPS.