Best way to export/import MS Sql 2008 Geography data
(ANSWER) How to export some Geography data from a Microsoft Sql Server 2008. You'll need to use the command line argument BCP to dump the data in it's original (native) format to a binary file. Then on the other server you can bulk insert this binary data back into a table of the same strucutre. here's some code. Export Command Line: bcp "geodata.dbo.GeographyData" out "C:\GeoData.bin" -T -n -S <servername> Notes This uses a Trusted connection use the bcp /? for more help for your export options if u need to be hardcore. Importing the data T-SQL: bulk insert GeographyData from 'C:\GeoData.bin'