Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: I am not a Schema

    @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...

  • RE: I am not a Schema

    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)....

  • RE: The Numbers Table

    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

Viewing 3 posts - 1 through 3 (of 3 total)