sql - Geometry in Derived Column SSIS -
i have spatial file (*.shp) 30 million records reading using ssis , has column point(lat,long).
while reading file want convert column(point) geometry using stgeomfromtext. can't use function in derived column or script have update column using below sql.
update table set mygeom_column = geometry:stgeomfromtext(point,0);
is there way can directly convert column geometry while reading? or use function in derived column convert geometry?
ssis (up 2012) not support geometry. please vote feature here:
Comments
Post a Comment