This does not look like English to me, does it?
I received some files with only coordinates, which had to be loaded into Oracle. It’s not super difficult, but I thought I’d share it anyway. The files contain some comment lines first, easily recognized the the hash (#) as the first character. The rest of the lines are x, y and z separated by spaces, like this:
#[MetadataBegin] #[OrderNumber]2013001 #[Measured by]Piet #[MeasureDate]30-1-2013 #[MetadataEnd] 58392.50 439762.50 -0.01 58397.50 439762.50 -0.03 58402.50 439762.50 -0.03 58407.50 439762.50 -0.03
The control file should be like this (change the filename etc):
OPTIONS (DIRECT=TRUE,MULTITHREADING=TRUE)
LOAD DATA
INTO TABLE DEPTHDATA
WHEN 1-1<>'#'
FIELDS TERMINATED BY ' '
(ID SEQUENCE(1,1),
 GEOMETRY COLUMN OBJECT
 (
  SDO_GTYPE CONSTANT "3001",
  SDO_POINT COLUMN OBJECT
   (X FLOAT EXTERNAL TERMINATED BY ' ' ,
    Y FLOAT EXTERNAL TERMINATED BY ' ' ,
    Z FLOAT EXTERNAL TERMINATED BY ' ' )
   )
)
		Just upgraded my Roundcube webmail from version 0.7.2 to 0.8.5. What a difference. Much better, and much easier on the eyes.
Just changed the server’s Apache model from Prefork to Worker. Should be easier on the memory and the CPU, but after downloading/installing it (via aptitude) nothing worked anymore. PHP works different under the Worker model, so directories need an extra handler and options. No biggie, read this thread.
