In SqlServer 2000, there used to be a table called sysindex which had a column rows. This table is now: -sys.indexes -sys.partitions -sys.allocation_units -sys.dm_db_partition_stats
(see: http://msdn.microsoft.com/en-us/library/ms187997.aspx) but none of these tables contain the row columns? So how do you find out how many rows there are for an index?
Thanks.