Viewing 3 posts - 1 through 3 (of 3 total)
@LutzM:
I'll try to find out. I don't know alot about what happened because the "acquiring company" tried to upgrade to 2008 R2 before our...
July 24, 2011 at 2:06 am
#1357512
Wow, great question. First, before I give my input, a little background on myself might help:
My background is primarily in SQL Server 2000+ data warehousing (both relational and "cube"/dimensional)....
July 10, 2011 at 1:40 am
#1350798
Itzik uses RECURSION, even faster.
With nums as
(
Select 1 as n
Union all
Select n+1 from nums where n < 10
)
Select n
From nums
November 24, 2008 at 8:32 am
#902511