Tagged Questions

6
votes
6answers
1k views

Why are my spatial searches slower in SQL Server than PostGIS?

I'm working on moving some spatial searching capabilities from Postgres with PostGIS to SQL Server and I'm seeing some pretty terrible performance, even with indexes. My data is around a million ...
4
votes
2answers
2k views

Selecting a good SQL Server 2008 spatial index with large polygons

I'm having some fun trying to pick a decent SQL Server 2008 spatial index setup for a data set I am dealing with. The dataset is polygons, representing contours over the whole globe. There are ...
3
votes
2answers
78 views

My spatial index in SQL Server is still requiring a lot of reads even on a very simple query. Why?

My trival query take 3 seconds to return and requires a ton of reads according to SQL Profiler. Why? I have a table filled with 5,000,000 accounts that are all geocoded points. All of the accounts ...
3
votes
1answer
320 views

Can I create a “Covering, Spatial” index in SQL Server 2008?

I currently have a site with a table that has Lat/Long float columns, and an index over those 2 columns plus another one I need to retrieve. I'm constantly querying this table to get the rows that ...
1
vote
1answer
88 views

Using spatial index in mssql gets “Failed to open malformed assembly 'mscorlib'”

I'm having a bit of an issue with setting up a db in MSSQL where when I try to set up an index on a geography data typed column and it keeps spiting out an error of Msg 6507, Level 16, State 2, Line ...
1
vote
1answer
240 views

SQL Server 2008 Spatial Index is not used

I have a column of type geography. I have created a a spatial index, but its not being used: declare @geog geography select @geog = 'POINT (18.12 -33.2)' select * from dbo.product ...
1
vote
2answers
669 views

How can I speed up this Sql Server Spatial query?

I have (what I think) is a simple Sql Server spatial query: Grab all the USA States that exist inside some 4 sided polygon (ie. the viewport/bounding box of a web page's google/bing map) SELECT ...
0
votes
0answers
59 views

Error creating spatial Index in SQL Server due to ARITHABORT setting

I am using SQL Server 2008 (not R2) and trying to insert spatial coordinates into my database using Mapinfo software. The following error occured while uploading the data: Could not create Spatial ...
0
votes
1answer
162 views

Spatial index is slow when trying to find all the points within a range of a geocode. How do I make this faster?

I've setup a spatial index on a table that has 1.3 million records in it that are all geocoded. These values are stored in a geography data type column. The problem I'm having is that when I query ...
0
votes
2answers
147 views

How do I create a spatial index in SQL Server Management Studio 2008?

I have a table with 3 columns, PrimaryKey(int), latitude(decimal 9,6) and longitude(decimal 9,6). I've imported a live view into mapinfo 10.5 using its DBMS connection but can't seem to make the ...
0
votes
1answer
180 views

Spatial database, strange index behavior

So, my database has a Table with a Id of type BigInt and a Geometry of type Geometry. The Geometry field has a spatial index called idx_Geometry The following query works as expected using the index: ...
0
votes
2answers
512 views

How can I specify this SQL Index Hint on my SQL Server 2008 query?

I'm not sure where/how I specify this SQL Spatial Index hint on my query :- SELECT Whatever FROM Table1 a INNER JOIN Table2 b ON a.Id = b.Id WHERE ...