Skip to content

Instantly share code, notes, and snippets.

@ciphertxt
Created October 27, 2015 20:15
Show Gist options
  • Select an option

  • Save ciphertxt/bc5bfbe4430ec8bc8132 to your computer and use it in GitHub Desktop.

Select an option

Save ciphertxt/bc5bfbe4430ec8bc8132 to your computer and use it in GitHub Desktop.
with fs
as
(
select database_id, type, size * 8.0 / 1024 size
from sys.master_files
)
select
name,
(select sum(size) from fs where type = 0 and fs.database_id = db.database_id) DataFileSizeMB,
(select sum(size) from fs where type = 1 and fs.database_id = db.database_id) LogFileSizeMB
from sys.databases db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment