Created
May 2, 2015 01:58
-
-
Save danielmackay/84521724e8752b70dec1 to your computer and use it in GitHub Desktop.
Displays the total size for a SQL DB. #sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
database_name = DB_NAME(database_id) | |
, log_size_mb = CAST(SUM(CASE WHEN type_desc = 'LOG' THEN size END) * 8. / 1024 AS DECIMAL(8,2)) | |
, row_size_mb = CAST(SUM(CASE WHEN type_desc = 'ROWS' THEN size END) * 8. / 1024 AS DECIMAL(8,2)) | |
, total_size_mb = CAST(SUM(size) * 8. / 1024 AS DECIMAL(8,2)) | |
FROM sys.master_files WITH(NOWAIT) | |
WHERE database_id = DB_ID() -- for current db | |
GROUP BY database_id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment