I have inherited a fairly large SQL Server database. It seems to take up more space than I would expect, given the data it contains.
Is there an easy way to determine how much space on disk each table is consuming?
|
I have inherited a fairly large SQL Server database. It seems to take up more space than I would expect, given the data it contains. Is there an easy way to determine how much space on disk each table is consuming? |
|||||||||
|
|
Try this:
Should give you the number of rows and the size the tables in your database are using currently. |
|||||||||||||||||||
|
|
sp_spaceused can get you information on the disk space used by a table, indexed view, or the whole database. For example:
This reports the disk usage information for the ContactInfo table. To use this for all tables at once:
You can also get disk usage from within the right-click Standard Reports functionality of SQL Server. To get to this report, navigate from the server object in Object Explorer, move down to the Databases object, and then right-click any database. From the menu that appears, select Reports, then Standard Reports, and then "Disk Usage by Partition: [DatabaseName]". |
|||
|
|
|
After some searching, I could not find an easy way to get information on all of the tables. There is a handy stored procedure named sp_spaceused that will return all of the space used by the database. If provided with a table name, it returns the space used by that table. However, the results returned by the stored procedure are not sortable, since the columns are character values. The following script will generate the information I'm looking for.
|
|||
|
|
|
|||||||||||||||||
|
|
My post is only relevant for SQL2000 and has been tested to work in my environment. This code accesses All possible databases of a single instance, not just a single database. I use two temp tables to help collect the appropriate data and then dump the results into one 'Live' table. Returned data is: DatabaseName, DatabaseTableName, Rows (in the Table), data (size of the table in KB it would seem), entry data (I find this useful for knowing when I last ran the script). Downfall to this code is the 'data' field is not stored as an int (The chars 'KB' are kept in that field), and that would be useful (but not totally necessary) for sorting. Hopefully this code helps someone out there and saves them some time!
In case you need to know, the rsp_DatabaseTableSizes table was created through:
|
||||
|
|
|
This will give you the sizes, and record counts for each table.
|
||||
|
|
Please note that sp_spaceused uses tables (mentioned in other queries on this post) that may be not up to date, see from msdn documentation *When updateusage is specified, the SQL Server Database Engine scans the data pages in the database and makes any required corrections to the sys.allocation_units and sys.partitions catalog views regarding the storage space used by each table. There are some situations, for example, after an index is dropped, when the space information for the table may not be current. updateusage can take some time to run on large tables or databases. Use updateusage only when you suspect incorrect values are being returned and when the process will not have an adverse effect on other users or processes in the database. If preferred, DBCC UPDATEUSAGE can be run separately.* |
|||
|
|
|
If you are using SQL Server Management Studio, instead of running a query (which in my case returned duplicate rows) you can run a standard report.
Note: The database compatibility level must be set to 900 or above for this to work correctly. See http://msdn.microsoft.com/en-gb/library/bb510680.aspx |
|||
|
|