Compare Page Revisions
« Older Revision - Back to Page History - Newer Revision »
select count(1) from TableName
SELECT TableName = '[' + s.name + '].[' + o.name + ']' ,RowQty = sum(p.rows) FROM sys.objects o inner join sys.schemas s on o.schema_id = s.schema_id inner join sys.partitions p on p.object_id = o.object_id and o.type = 'U' LEFT JOIN sys.allocation_units a ON p.partition_id = a.container_id WHERE 1=1 -- 0 = heap table, 1 = table with clustered index and p.index_id in (0, 1) and a.type = 1 -- row-data only , not LOB and p.rows is not null group by o.name, s.name order by o.name, s.name
ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam. Except where noted, all contents Copyright © 1999-2024, Patrick Jasinski.