Geoffrey Emery
Tech Goodness

Adding Spatial Data Type To Existing Table

April 22, 2009 18:05 by gemery

 

You just found out that sql server 2008 has spatial support and you want to add a spatail refrence to that the table? Here is how

 

create TABLE customers
(
  FirstName nvarchar(30),
  LatName nvarchar(30)
)
alter table customers 
add location geography

Related posts

Comments are closed