• I have a table containg a large number

    DECLARE @int INT;

    SET @int = 1;

    WHILE @int <=1000

    BEGIN

    INSERT INTO TestTable (id, col)

    VALUES (@int, 'name' + CAST(@int AS VARCHAR(100)));

    SET @int += 1;

    I Have Nine Lives You Have One Only
    THINK!