How much the growth will be is of course linked to how much activity there is in the database and how much data you insert. If you want to trend the filegrowth you can log the results of the following query to a table once a day or something and make estimates based on the results:select a.FILEID, NAME = a.NAME, [FILE_SIZE_MB] = convert(decimal(12,2),round(a.size/128.000,2)), [SPACE_USED_MB] = convert(decimal(12,2),round(fileproperty(a.name,'SpaceUsed')/128.000,2)), [FREE_SPACE_MB] = convert(decimal(12,2),round((a.size-fileproperty(a.name,'SpaceUsed'))/128.000,2)) , FILENAME = a.FILENAMEfrom dbo.sysfiles a
- Lumbagohttp://xkcd.com/327/