[GIS] Using PostGIS functionalities in Microsoft SQL Server?

postgissql-server-spatial

I'm using Postgresql 8.4, Postgis 1.5 for My GIS works.
Planning to change my Database to Microsoft SQL Server 2012.

Can we use all the Postgis functionalities in Microsoft SQL Server 2012?

Best Answer

MS SQL Server includes spatial functions, but the functions are usually named differently, for example PostGIS's intersect function is named ST_Intersect and in SQL Server it is called STIntersection.

Your best bet to migrate would be to use ogr2ogr to move your data from Postgres to MS-SQL, then you'll have to re-write any queries you're using in Postgres.