View the space occupied by each table in the MSSQL database

Source: Internet
Author: User
This article provides a detailed analysis of the space occupied by each table in the MSSQL database. For more information, see

This article provides a detailed analysis of the space occupied by each table in the MSSQL database. For more information, see

Recently, you need to check the size of the User table, including the number of records and the number of occupied disk space. After searching for a long time on the Internet, you can view the space occupied by each table in the MSSQL database.
However, the methods 2 and 3 return a large amount of data, some of which are data that we don't care about. I did a test on the AdventureWorks2012 data. The code for the second method is as follows:

The Code is as follows:


View Code
If not exists (select * from dbo. sysobjects where id = object_id (n' [dbo]. [tablespaceinfo] ') and OBJECTPROPERTY (id, n' isusertable') = 1)
Create table tablespaceinfo -- create a result storage table
(Nameinfo varchar (50 ),
Rowsinfo int, reserved varchar (20 ),
Datainfo varchar (20 ),
Index_size varchar (20 ),
Unused varchar (20 ))
Delete from tablespaceinfo -- clear the data table
Declare @ tablename varchar (255) -- table name
Declare @ brief SQL varchar (500)
DECLARE Info_cursor CURSOR
Select o. name
From dbo. sysobjects o where OBJECTPROPERTY (o. id, N 'istable') = 1
And o. name not like n' # % 'order by o. name
OPEN Info_cursor
Fetch next from Info_cursor
INTO @ tablename
WHILE @ FETCH_STATUS = 0
BEGIN
If exists (select * from dbo. sysobjects where id = object_id (@ tablename) and OBJECTPROPERTY (id, N 'isusertable') = 1)
Execute sp_executesql
N 'insert into tablespaceinfo exec sp_spaceused @ tbname ',
N' @ tbname varchar (255 )',
@ Tbname = @ tablename
Fetch next from Info_cursor
INTO @ tablename
END
CLOSE Info_cursor
DEALLOCATE Info_cursor
GO
-- Itlearner Note: displays database information
Sp_spaceused @ updateusage = 'true'
-- Itlearner Note: displays table information
Select *
From tablespaceinfo
Order by cast (left (ltrim (rtrim (reserved), len (ltrim (rtrim (reserved)-2) as int) desc


Running Effect


Obviously, this returned result is incorrect. However, it provides an idea, Modified SQL statementAs follows:

The Code is as follows:


View Code
If not exists (SELECT *
FROM sys. tables
WHERE name = 'tablespaceinfo ')
BEGIN
Create table tablespaceinfo -- CREATE a result storage TABLE
(
Table_Name VARCHAR (50 ),
Rows_Count INT,
Reserved INT,
Datainfo INT,
Index_size INT,
Unused INT
)
END
Delete from tablespaceinfo
-- Clear a data table
Create table # temp -- CREATE a result storage TABLE
(
Nameinfo VARCHAR (50 ),
Rowsinfo INT,
Reserved VARCHAR (20 ),
Datainfo VARCHAR (20 ),
Index_size VARCHAR (20 ),
Unused VARCHAR (20)
)
DECLARE @ tablename VARCHAR (255)
-- Table name
DECLARE @ brief SQL NVARCHAR (500)
DECLARE Info_cursor CURSOR
FOR
SELECT '[' + TABLE_SCHEMA + ']. [' + TABLE_NAME + ']' AS Table_Name
FROM [INFORMATION_SCHEMA]. [TABLES]
WHERE TABLE_TYPE = 'base table'
AND TABLE_NAME <> 'tablespaceinfo'
OPEN Info_cursor
Fetch next from Info_cursor
INTO @ tablename
WHILE @ FETCH_STATUS = 0
BEGIN
SET @ resolve SQL = 'insert into # temp exec sp_spaceused ''' + @ tablename
+ ''''
EXECUTE sp_executesql @ explain SQL
Fetch next from Info_cursor
INTO @ tablename
END
CLOSE Info_cursor
DEALLOCATE Info_cursor
GO
-- Itlearner Note: displays database information
-- Sp_spaceused @ updateusage = 'true'
-- Itlearner Note: displays table information
UPDATE # temp
SETreserved = REPLACE (reserved, 'kb ',''),
Datainfo = REPLACE (datainfo, 'kb ',''),
Index_size = REPLACE (index_size, 'kb ',''),
Unused = REPLACE (unused, 'kb ','')
Insert into dbo. tablespaceinfo
SELECT nameinfo,
CAST (rowsinfo as int ),
CAST (reserved as int ),
CAST (datainfo as int ),
CAST (index_size as int ),
CAST (unused as int)
FROM # temp
Drop table # temp
SELECT Table_Name,
Rows_Count,
Case when reserved> 1024
Then cast (reserved/1024 as varchar (10) + 'mb'
Else cast (reserved as varchar (10) + 'kb'
End as Data_And_Index_Reserved,
Case when datainfo> 1024
Then cast (datainfo/1024 as varchar (10) + 'mb'
Else cast (datainfo as varchar (10) + 'kb'
End as Used,
Case when Index_size> 1024
Then cast (index_size/1024 as varchar (10) + 'mb'
Else cast (index_size as varchar (10) + 'kb'
End as index_size,
Case when unused> 1024 then cast (unused/1024 as varchar (10) + 'mb'
Else cast (unused as varchar (10) + 'kb'
End as unused
FROM dbo. tablespaceinfo
Order by reserved DESC


Running result


At the same time, his third method returns too much data, many of which are of little concern to us. On the Hong Kong server, the original SQL statement is as follows:

The Code is as follows:


View Code

SELECT OBJECT_NAME (id) tablename,
* Reserved/ 1024 reserved,
RTRIM (8 * dpages/1024) + 'mb' used,
* (Reserved-dpages)/1024 unused,
* Dpages/1024-rows/1024 * minlen/1024 free,
Rows
FROM sysindexes
WHERE indid = 1
Order by reserved DESC


Running result


Here we have some index information. In fact, we only care about the disk usage of tables, no record filing space, Hong Kong servers, Modified SQL statementAs follows:

The Code is as follows:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.