patternMinor
Table Size Analysis on SQL Server 2000
Viewed 0 times
2000sqlsizeanalysisservertable
Problem
Our SQL Server 2000 database
The results were as follows:
.mdf file is 27Gb large which seems much larger than is plausible. Using the following query we tried to analyse table sizes:select cast(object_name(id) as varchar(50)) AS name,
sum(CASE WHEN indid100
GROUP BY id with rollup
ORDER BY sum(reserved)*8 descThe results were as follows:
Name Rows Reserved Data Index_Size Unused
NULL 15274279 26645456 5674592 17361464 3609400
BigTable 875966 16789712 471096 13349816 2968800- How can we find out which objects are causing this massive
NULLspace usage?
- It seems that approx 26GB are "reserved" for
NULL, 16GB forBigTable- is this basically a waste of space or are real records involved?
Solution
You're not using
This query generates a subtotal report:
Output:
WITH ROLLUP correctly. WTIH ROLLUP creates a subtotal and/or total based upon what you tell it. You didn't specify what to call the subtotal and/or total so it is calling it NULL.This query generates a subtotal report:
SELECT CASE WHEN (GROUPING(Item) = 1) THEN 'ALL'
ELSE ISNULL(Item, 'UNKNOWN')
END AS Item,
CASE WHEN (GROUPING(Color) = 1) THEN 'ALL'
ELSE ISNULL(Color, 'UNKNOWN')
END AS Color,
SUM(Quantity) AS QtySum
FROM Inventory
GROUP BY Item, Color WITH ROLLUPOutput:
Item Color QtySum
-------------------- -------------------- --------------------------
Chair Blue 101.00
Chair Red 210.00
Chair ALL 311.00
Table Blue 124.00
Table Red 223.00
Table ALL 347.00
ALL ALL 658.00Code Snippets
SELECT CASE WHEN (GROUPING(Item) = 1) THEN 'ALL'
ELSE ISNULL(Item, 'UNKNOWN')
END AS Item,
CASE WHEN (GROUPING(Color) = 1) THEN 'ALL'
ELSE ISNULL(Color, 'UNKNOWN')
END AS Color,
SUM(Quantity) AS QtySum
FROM Inventory
GROUP BY Item, Color WITH ROLLUPItem Color QtySum
-------------------- -------------------- --------------------------
Chair Blue 101.00
Chair Red 210.00
Chair ALL 311.00
Table Blue 124.00
Table Red 223.00
Table ALL 347.00
ALL ALL 658.00Context
StackExchange Database Administrators Q#36249, answer score: 2
Revisions (0)
No revisions yet.