【问题标题】:Convert Postgis table to SQL Server 2008将 Postgis 表转换为 SQL Server 2008
【发布时间】:2010-11-13 01:10:41
【问题描述】:

有简单的方法吗?

【问题讨论】:

    标签: sql-server database postgresql postgis


    【解决方案1】:

    也许只是导出到 shapefile 或 kml,然后使用these standard tools 之一重新导入到 SQL Server。例如:

    SELECT ST_AsKML(the_geom) FROM the_spatial_table WHERE ....

    这会输出 kml,然后您可以将其重新导入 SQL Server(我假设不是 SQL Server 专家,但它是一种常见格式。)Here: http://www.postgis.org/documentation/manual-1.4/ch07.html#Geometry_Outputs 是 Postgis 的其他几何输出格式。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-05-02
      • 2010-10-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多