Skip to content

Instantly share code, notes, and snippets.

@litodam
Created September 14, 2012 19:36
Show Gist options
  • Save litodam/3724209 to your computer and use it in GitHub Desktop.
Save litodam/3724209 to your computer and use it in GitHub Desktop.
Get SQL DB Size in MB
SELECT SUM(reserved_page_count) * 8.0 / 1024 AS MB
FROM sys.dm_db_partition_stats
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment