• Hi,

    you could use the script @:

    http://blogs.technet.com/b/mdegre/archive/2009/10/14/determining-sql-server-table-size.aspx

    Ensure that the data is stored in a persistent table instead of a #temp table.

    Then you can also setup a SQL job to run the stored procedure at a set interval, e.g. every morning, which will append tot he table (add a date column to the table).

    And finally you could create a small SSRS report against that table to view how the table(s) are growing over time.

    HTH,

    B