<div>This is what I have so far. Back to where I started. The table is created in CENSUS_2010 spatial database, but the ogr_geometry column is null. No error.</div>
<div> </div>
<div>ogr2ogr -overwrite -s_srs EPSG:32002 -t_srs EPSG:4326 -f MSSQLSpatial &quot;MSSQL:server=ELMER;database=CENSUS_2010;;trusted_connection=yes&quot; &quot;MSSQL:server=ELMER;database=HT_2011_10;trusted_connection=yes&quot; -sql &quot;SELECT xloc,yloc, spid FROM  dbo.qaBtcSubLocs&quot; -nln &quot;btcSubLocs&quot; <br>
</div>
<div>The geometry_columns table is:</div>
<div> </div>
<div>f_table_catalog f_table_schema f_table_name f_geometry_column coord_dimension srid geometry_type<br>CENSUS_2010     dbo      btcsublocs      ogr_geometry      2       4326        GEOMETRY</div>
<div><br>Fred</div>
<div> </div>
<div class="gmail_quote">On Thu, Nov 17, 2011 at 1:48 AM, Luca Sigfrido Percich <span dir="ltr">&lt;<a href="mailto:sigfrido@tiscali.it">sigfrido@tiscali.it</a>&gt;</span> wrote:<br>
<blockquote style="BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" class="gmail_quote">Hi Fred,<br><br>Il giorno mer, 16/11/2011 alle 10.11 -0700, Fred Jones ha scritto:<br>
<div class="im">&gt; Hi Sig,<br>&gt;<br>&gt; I have a SQL table temp_sublocs_btc with the MT State Plane x and y as<br>&gt; the first columns in the table. CENSUS_2010 is a sql spatial database.<br>&gt;<br>&gt; This is the command I have so far. When I execute it, I just get the<br>
&gt; help returned, no error:<br>&gt;<br>&gt; ogr2ogr -overwrite -s_srs EPSG:32100 -t_srs EPSG:4326 -f<br>&gt; &quot;MSSQL:server=ELMER;database=CENSUS_2010;trusted_connection=yes&quot;<br>&gt; &quot;MSSQL:server=ELMER;database=HT_2010_10;tables=temp_sublocs_btc;trusted_connection=yes&quot;<br>
&gt;<br>&gt; What am I doing wrong?<br><br></div>Please remember to always post the error messages otherwise we won&#39;t be<br>able to understand. Before the usege text you should see an error<br>message.<br><br>I never worked with ogr and MSSQL, but I guess that the problem is that<br>
you should separate the output format specification (-f &quot;MSSQL&quot;)  and<br>the server connection string.<br><br>Try:<br>
<div class="im"><br>ogr2ogr -overwrite -s_srs EPSG:32100 -t_srs EPSG:4326 -f &quot;MSSQL&quot;<br>&quot;MSSQL:server=ELMER;database=CENSUS_2010;trusted_connection=yes&quot;<br>&quot;MSSQL:server=ELMER;database=HT_2010_10;tables=temp_sublocs_btc;trusted_connection=yes&quot;<br>
<br></div>assuming that tables=temp_sublocs_btc allows you to select the input<br>layer.<br><br>Regarding the creation of point, in PostGIS I would simply insert the X<br>and Y coords in two float fields of the target table, and issue a<br>
<br>update CENSUS_2010.temp_sublocs_btc set geom =<br>ST_Transform(ST_SetSRID(ST_MakePoint(x, y), 32100), 4326)<br><br>Which means create a point with x, y, set its SRID to state plane, then<br>transform it into WGS84, then store it in the geom column of your table<br>
(the geometry column of which should have been created in WGS84 SRS).<br><br>I don&#39;t know the corresponding function in MSSQL for ST_MakePoint etc...<br>you should refer to the documentation<br><br>I never tried this! I don&#39;t know if you can do the transformation<br>
directly with the -sql clause of ogr2ogr or with other options, please<br>try and let us know.<br><br>Sig<br><br><br><br><br><br><br><br><br>_____________<br>PRIVACY<br>Le informazioni contenute in questo messaggio sono riservate e confidenziali. Il loro utilizzo e&#39; consentito esclusivamente al destinatario del messaggio, per le finalità indicate nel messaggio stesso. Qualora Lei non fosse la persona a cui il presente messaggio è destinato, La invitiamo ad eliminarlo dal Suo Sistema e a distruggere le varie copie o stampe, dandone gentilmente comunicazione all’indirizzo mail del mittente. Ogni utilizzo improprio e&#39; contrario ai principi del D.lgs 196/03 e alla legislazione europea (Direttiva 2002/58/CE).<br>
<br>PRIVACY<br>Le informazioni contenute in questo messaggio sono riservate e confidenziali. Il loro utilizzo e&#39; consentito esclusivamente al destinatario del messaggio, per le finalità indicate nel messaggio stesso. Qualora Lei non fosse la persona a cui il presente messaggio è destinato, La invitiamo ad eliminarlo dal Suo Sistema e a distruggere le varie copie o stampe, dandone gentilmente comunicazione all’indirizzo mail del mittente. Ogni utilizzo improprio e&#39; contrario ai principi del D.lgs 196/03 e alla legislazione europea (Direttiva 2002/58/CE).<br>
</blockquote></div><br>