Starting with the last two Service Releases, SQL Azure has begun to implement the new spatial features introduced in SQL Server 2012 (“Denali”). A post
detailing these new features and their status can be found at:
http://social.technet.microsoft.com/wiki/contents/articles/new-spatial-features-in-the-sql-azure-q2-2011-service-release.aspx
A post discussing the new spatial features introduced in “Denali” can be found at:
http://social.technet.microsoft.com/wiki/contents/articles/4136.aspx
In particular please pay attention to the section on nearest neighbor query plans.
Towards this direction, I’ve taken the example introduced by @bmwlexusman in this thread and modified it, as appropriate, to point to some existing data that
I already loaded in SQL Azure:
Background:
Table size: 1,892,290 rows
Table = Geonames

Index:
CREATE
SPATIAL INDEX geog_hhhh_16_sidx
ON Geonames(GEOG)USING
GEOGRAPHY_GRID
WITH (
GRIDS =(LEVEL_1 = MEDIUM,
LEVEL_2 = MEDIUM,
LEVEL_3 = MEDIUM,
LEVEL_4 = MEDIUM),
CELLS_PER_OBJECT = 16);
Query(s):
SELECT
@@VERSION
GO
--Results: Microsoft SQL Azure (RTM) - 11.0.1756.35
--
Nov 9 2011 15:50:14
--
Copyright (c) Microsoft Corporation
SELECT
COUNT(*)
FROM Geonames;
GO
--Results: 1,892,290 rows
--==============================================================
-- Query Not Using Spatial Index
--==============================================================
DECLARE @x
geography
SET @x =
geography::Point(47.5302778,
-122.0313889, 4326)
DECLARE @Radius
FLOAT = 20000
SELECT
TOP (25) geonameid
AS ID, L.Geog.STDistance(@x)
AS DIST
FROM Geonames L
WHERE L.Geog.STDistance(@x)
<= @Radius;
GO
--Returns: QUERY MANUALLY CANCELLED AFTER 6 MINUTES WITH NO RESULT
--==============================================================
-- Query Not Using Spatial Index
--==============================================================
DECLARE @x
geography
SET @x =
geography::Point(47.5302778,
-122.0313889, 4326)
DECLARE @Radius
FLOAT = 1000
SELECT
TOP (25) geonameid
AS ID, L.Geog.STDistance(@x)
AS DIST
FROM Geonames L
WHERE L.Geog.STDistance(@x)
<= @Radius;
GO
--Returns: QUERY CANCELLED STOPPED AFTER 2 MINUTES WITH NO RESULT
--==============================================================
-- Query Using Denali Nearest Neighbor Query Pattern
--
Large Search Radius
--==============================================================
DECLARE @x
geography
SET @x =
geography::Point(47.5302778,
-122.0313889, 4326)
DECLARE @Radius
FLOAT = 20000
SELECT
TOP(25) geonameid
AS ID, L.Geog.STDistance(@x)
AS DIST
FROM Geonames L
WHERE L.Geog.STDistance(@x)
< @Radius
ORDER BY L.Geog.STDistance(@x);
GO
--Results: 25 rows in 4 seconds
--==============================================================
-- Query Using Denali Nearest Neighbor Query Pattern
--
Small Search Radius
--==============================================================
DECLARE @x
geography
SET @x
= geography::Point(47.5302778,
-122.0313889, 4326)
DECLARE @Radius
FLOAT = 1000
SELECT
TOP(25) geonameid
AS ID, L.Geog.STDistance(@x)
AS DIST
FROM Geonames L
WHERE L.Geog.STDistance(@x)
< @Radius
ORDER BY L.Geog.STDistance(@x);
GO
--Results: 7 rows in 0 seconds
--==============================================================
-- Query Using Denali Nearest Neighbor Query Pattern
--
Generic (no search radius)
--==============================================================
DECLARE @x
geography
SET @x
= geography::Point(47.5302778,
-122.0313889, 4326)
SELECT
TOP(25) geonameid
AS ID, L.Geog.STDistance(@x)
AS DIST
FROM Geonames L
WHERE L.Geog.STDistance(@x)
IS NOT
NULL
ORDER BY L.Geog.STDistance(@x);
GO
--Results: 25 rows in 4 seconds
I’ll be interested in how the information presented above is able to resolve (or not) the issues which the participants, in this thread, have presented.
Thanks,
-Ed
Ed Katibah
Spatial Program Manager
SQL Server/SQL Azure
Microsoft Corporation