我想计算我的数据库在服务器中使用了多少空间。我可以使用sp_spacefiles
或查询sys.databases
表,但这会为每个数据库提供单独的结果,我必须将其复制到Excel工作表中并从那里计算总和。
在T-SQL中有直接的方法吗?
感谢。
答案 0 :(得分:23)
您可以查询master.sys.master_files
:
SELECT CONVERT(DECIMAL(10,2),(SUM(size * 8.00) / 1024.00 / 1024.00)) As UsedSpace
FROM master.sys.master_files
这将为您提供总计GB。
Sys.Master_files
是一个服务器范围的视图,列出了每个数据库中的每个文件。它可以从SQL Server 2005开始使用。
答案 1 :(得分:2)
这是我在SQLServerCentral.com上找到的答案。这个页面上有不同用户提供的几个不同的脚本。也许其中一个会提供您正在寻找的内容。
http://www.sqlservercentral.com/Forums/Topic670489-146-1.aspx
以下是MANU-J的一个脚本:
Create TABLE #db_file_information(
fileid integer
, theFileGroup integer
, Total_Extents integer
, Used_Extents integer
, db varchar(30)
, file_Path_name varchar(300))
-- Get the size of the datafiles
insert into #db_file_information
( fileid
, theFileGroup
, Total_Extents
, Used_Extents
, db
, file_Path_name )
exec sp_MSForEachDB 'Use ?; DBCC showfilestats'
-- add two columns to the temp table
alter table #db_file_information add PercentFree as
((Total_Extents-Used_Extents)*100/(Total_extents))
alter table #db_file_information add TotalSpace_MB as
((Total_Extents*64)/1024)
alter table #db_file_information add UsedSpace_MB as
((Used_Extents*64)/1024)
alter table #db_file_information add FreeSpace_MB as
((Total_Extents*64)/1024-(Used_Extents*64)/1024)
select * from #db_file_information
drop table #db_file_information
答案 2 :(得分:0)
以防有人需要按文件计算:
select physical_name, size,
CONVERT(DECIMAL(10,2),(size * 8.00) / 1024.00) As UsedSpace
from master.sys.master_files
order by physical_name
结果以MBytes为单位