Viewing 12 posts - 31 through 42 (of 42 total)
wbrianwhite (7/21/2010)
http://msdn.microsoft.com/en-us/library/bb964711.aspx
http://social.msdn.microsoft.com/Forums/en-US/sqlspatial/thread/c557032a-038e-480c-84e8-7f0ad72e1af7
I've read about it a little, but haven't used it yet....
July 21, 2010 at 11:49 am
Since you were using lat/long datatypes - did you look into the geometry data type?
http://msdn.microsoft.com/en-us/library/bb964711.aspx
http://social.msdn.microsoft.com/Forums/en-US/sqlspatial/thread/c557032a-038e-480c-84e8-7f0ad72e1af7
I've read about it a little, but haven't used it yet. ...
July 21, 2010 at 11:46 am
I had always heard that you should do a "select count(1) from table".
http://www.techonthenet.com/sql/count.php
"TIP: Performance Tuning
Since the COUNT function will return the same results regardless of what NOT NULL...
September 2, 2009 at 3:12 pm
Look at the execution plan, look at and think about what you are typing. Having complex queries will benefit from compiling and recompiling a stored procedure. This is because having...
August 25, 2009 at 8:10 am
R. C. van Dijk (8/24/2009)Having 100 rows of data is in about 80% (or more) of the times to much info. Users are interested in data they can use. Overviews...
August 25, 2009 at 8:04 am
Michael Ross (8/24/2009)
August 24, 2009 at 1:54 pm
R. C. van Dijk (8/24/2009)
August 24, 2009 at 1:49 pm
Actually, the first thing I would do to debug it would be to have the stored proc run in the actual environment in sql query editor (assuming it's not a...
August 24, 2009 at 8:14 am
Mike C (5/13/2009)
May 13, 2009 at 2:53 pm
William Hutton (5/12/2009)
May 12, 2009 at 4:14 pm
In what way was simple set logic unable to perform this operation? It looks like this could be solved with left outer joins and is null tests. I...
May 12, 2009 at 12:31 pm
I find the example disingenuous. You CANNOT use a sample query of "select.. from titles join authors" as an example of a place not to use table aliases. ...
May 7, 2009 at 7:41 am
Viewing 12 posts - 31 through 42 (of 42 total)