Is it possible to add a geography data type column to an index as an included column?
I am using SQL Server 2008 and the option is greyed out!
It is really annoying as my query has to lookup each row using the clustered index instead of just getting the geography value from a covering index.
I can't find any information about this online.
Has this changed in SQL Server 2012?
CREATE INDEXstatement yourself? msdn.microsoft.com/en-us/library/ms188783(v=sql.100).aspx All data types are allowed except text, ntext, and image. The index must be created or rebuilt offline (ONLINE = OFF) if any one of the specified non-key columns are varchar(max), nvarchar(max), or varbinary(max) data types.