• offtop

    The performant alternative:

    Create a Tally or Numbers Table

    create table dbo.Tally(i int identity(1,1))

    go

    insert into dbo.Tally DEFAULT VALUES

    go 1000000

    I Have Nine Lives You Have One Only
    THINK!