2016-04-27 78 views
2

我已为Sharepoint实施Blob存储。下面的代码工作,我想确保它计数blobs驱动器上的文件流。SQL - 获取数据库大小

SELECT [Database Name] = DB_NAME(database_id), 
     [Type] = CASE WHEN Type_Desc = 'ROWS' THEN 'Data File(s)' 
        WHEN Type_Desc = 'LOG' THEN 'Log File(s)' 
        ELSE Type_Desc END, 
     [Size in MB] = CAST(((SUM(Size)* 8)/1024.0) AS DECIMAL(18,2)) 
FROM sys.master_files 
-- Uncomment if you need to query for a particular database 
-- WHERE  database_id = DB_ID(‘Database Name’) 
GROUP BY  GROUPING SETS 
       (
        (DB_NAME(database_id), Type_Desc), 
        (DB_NAME(database_id)) 
      ) 
ORDER BY  DB_NAME(database_id), Type_Desc DESC 
GO 

回答

0

请尝试其中一个SQL脚本。

SELECT 
    t.NAME AS TableName, 
    p.rows AS RowCounts, 
    SUM(a.total_pages) * 8 AS TotalSpaceKB, 
    SUM(a.used_pages) * 8 AS UsedSpaceKB, 
    (SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKB 
FROM 
    sys.tables t 
INNER JOIN  
    sys.indexes i ON t.OBJECT_ID = i.object_id 
INNER JOIN 
    sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id 
INNER JOIN 
    sys.allocation_units a ON p.partition_id = a.container_id 
WHERE 
    t.NAME NOT LIKE 'dt%' 
    AND t.is_ms_shipped = 0 
    AND i.OBJECT_ID > 255 
GROUP BY 
    t.Name, p.Rows 
ORDER BY 
    t.Name 


--- SQL2005 
select o.name 
, reservedpages = sum(a.total_pages) 
, usedpages = sum(a.used_pages) 
, pages = sum(case when a.type <> 1 then a.used_pages 
when p.index_id < 2 then a.data_pages else 0 end) 
, SUM(a.used_pages)*8096 AS 'Size(B)' 
, rows = sum(case when (p.index_id < 2) and (a.type = 1) then p.rows else 0 end) 
from sys.objects o 
join sys.partitions p on p.object_id = o.object_id 
join sys.allocation_units a on p.partition_id = a.container_id 
where o.type = 'U' 
group by o.name 
order by 3 desc --biggest tables first 

此外,这里有几个链接,可以给你更多的想法。

http://ask.sqlservercentral.com/questions/88859/sql-server-2008-r2-table-sizes.html

http://www.sqlmatters.com/Articles/Listing%20all%20tables%20in%20a%20database%20and%20their%20row%20counts%20and%20sizes.aspx

+0

感谢ryguy7272。我会测试脚本并让你知道。我很感激。 –