﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQL Server 2008 / SQL Server 2008 - General  / Monitor Table Grow / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Wed, 19 Jun 2013 16:32:07 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Monitor Table Grow</title><link>http://www.sqlservercentral.com/Forums/Topic1381077-391-1.aspx</link><description>ThanksThis is Awesome, help me a lot.</description><pubDate>Mon, 05 Nov 2012 10:39:11 GMT</pubDate><dc:creator>surma.sql</dc:creator></item><item><title>RE: Monitor Table Grow</title><link>http://www.sqlservercentral.com/Forums/Topic1381077-391-1.aspx</link><description>Something like the following would work[code="sql"]create table tablemonitor (name sysname, rows bigint, reserved varchar(100), data varchar(100), index_size varchar(100), unused varchar(100), datecollected datetime default getdate())insert into tablemonitor (name, rows, reserved,data,index_size,unused) exec sp_msforeachtable 'sp_spaceused [?]'[/code]Wrap the insert into a SQL job to execute daily, then you can query the table and see which tables are growing day by day.</description><pubDate>Mon, 05 Nov 2012 07:30:25 GMT</pubDate><dc:creator>anthony.green</dc:creator></item><item><title>RE: Monitor Table Grow</title><link>http://www.sqlservercentral.com/Forums/Topic1381077-391-1.aspx</link><description>Hi,you could use the script @:[url]http://blogs.technet.com/b/mdegre/archive/2009/10/14/determining-sql-server-table-size.aspx[/url]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</description><pubDate>Mon, 05 Nov 2012 07:30:20 GMT</pubDate><dc:creator>bleroy</dc:creator></item><item><title>Monitor Table Grow</title><link>http://www.sqlservercentral.com/Forums/Topic1381077-391-1.aspx</link><description>HelloI need to Monitor which table growing for Database.so please help me to do this.I have no idea how to monitor growth of the tables.Thanks</description><pubDate>Mon, 05 Nov 2012 07:23:12 GMT</pubDate><dc:creator>yogi123</dc:creator></item></channel></rss>