My spatial geography index in SQL Server has the following level definitions.

HIGH LOW LOW LOW

The problem is that all of my points are in a city and thus all of my points are in a single cell at layer 1. As a result the primary filter is looking at all points which means my index efficiency is 0%. I realized that the HIGH grid means that there are 256 cells. How do I instead use 512 cells or 1024 cells? 256 just isn't enough for me.

Take a look at this page for the different levels.

Does anyone know how to get a higher value than HIGH?

link|improve this question

Have you tried changing CELLS_PER_OBJECT parameter? – Pavel Nefyodov Aug 23 '11 at 23:05
@Pavel Nefyodov That only applies to polygon objects from my understanding and not points. – Paul Mendoza Aug 24 '11 at 20:09
1  
If all your points are within a small area, would it not be better to use the GEOMETRY data type, specifying the bounding area around the city, your chosen projection system? – CatchingMonkey Aug 25 '11 at 8:51
I'm beginning to think this is the right answer. – Paul Mendoza Aug 25 '11 at 16:11
Why are you specifying HLLL to begin with, instead of HHHH? Using HHHH should still improve resolution even if all points are still in the same root cell. – stevehem Aug 26 '11 at 14:25
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.