Re: Bulk insert of geometry types
The following works for me:
Input file:
32342342334 LINESTRING(11347.1232 32322.7576)
32341342234 LINESTRING(12311.2232 32320.3304)
Query:
LOAD DATA INFILE 'c:\myFile.txt'
INTO TABLE `tbl_myTable`
(@var1, @var2)
SET
obj_id = @var1,
obj_geo = GeomFromText(@var2);
Subject
Views
Written By
Posted
9956
September 21, 2010 09:42AM
3968
October 05, 2010 06:12AM
Re: Bulk insert of geometry types
3709
January 02, 2011 07:20PM
3460
November 05, 2010 09:03AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.