One of the quickest and easiest ways to make a database more performant is to reduce how much space the data takes up. Here’s a script that I wrote that’ll find each table in a database (run it in the context of the database). This script determines how many rows of data each table has (in kilobytes), determines the size of the data in the table, and then gives you a ratio of data per row. The higher a data/row ratio the more likely there is a chance of reducing the amount of space.
DECLARE @tables TABLE
(
name VARCHAR (MAX),
ID INT IDENTITY (1,1),
cnt INT,
SIZE INT
)
DECLARE @i INT, @count INT, @name VARCHAR (MAX),@sql VARCHAR (MAX)
INSERT INTO
@tables (name)
SELECT
TABLE_SCHEMA + '.' + TABLE_NAME
FROM
INFORMATION_SCHEMA.tables
WHERE
TABLE_TYPE = 'base table'
SELECT
@count = COUNT (*)
FROM
@tables
SET @i = 1
WHILE @i <= @count
BEGIN
CREATE TABLE #temp (
name VARCHAR (MAX),
ROWS VARCHAR (MAX),
reserved VARCHAR (MAX),
DATA VARCHAR (MAX),
index_size VARCHAR (MAX),
unused VARCHAR (MAX)
)
SELECT
@name = name
FROM
@tables
WHERE
ID = @i
INSERT INTO #temp (
name,
ROWS,
reserved,
DATA,
index_size,
unused
)
EXEC sp_spaceused @name
UPDATE @tables SET
SIZE = LEFT (DATA, LEN (DATA) - 3),
cnt = ROWS
FROM
#temp a
CROSS JOIN @tables b
WHERE
b.id = @i
DROP TABLE #temp
SET @i = @i + 1
END
SELECT
*,
(SIZE * 1.0) / cnt AS Ratio
FROM
@tables
WHERE
cnt > 0
ORDER BY
(SIZE * 1.0) / cnt DESC