Viewing 4 posts - 1 through 4 (of 4 total)
Sure, but when you've encountered similar enough problems to solve enough times - you can often skip the analysis and use a "good enough" solution that works well enough in...
June 6, 2013 at 10:14 am
1) Compression Tools - the free tools do such a great job, why bother paying for something? 7zip works great and I usually get a SQL backup down to...
June 6, 2013 at 9:31 am
Alternate for generating the week/day pairs (probably need to adjust dates to start of school year, rather than beginning of calendar year):
WITH dates(DT) AS
(
SELECT CONVERT(date,DATEADD(day,-7,GETDATE())) as DT
UNION ALL
SELECT DATEADD(d,1,DT)
FROM...
April 18, 2013 at 9:39 am
You could also use the STDistance function on 2 geo columns/objects?
June 11, 2012 at 10:07 pm
Viewing 4 posts - 1 through 4 (of 4 total)