Listing 2: Batch to Demonstrate Increasing Space Allocation DECLARE @rows int SET @rows = 1 WHILE @rows < 8 BEGIN INSERT INTO largerow DEFAULT VALUES EXEC sp_spaceused largerow, @updateusage = true SET @rows = @rows + 1 END