Here is a handy T-SQL script to show tables in a database and how many rows are in each table.
SELECT OBJECT_NAME(OBJECT_ID) TableName, row_count
FROM sys.dm_db_partition_stats
WHERE index_id < 2
ORDER BY row_count DESC
Here is a handy T-SQL script to show tables in a database and how many rows are in each table.
SELECT OBJECT_NAME(OBJECT_ID) TableName, row_count
FROM sys.dm_db_partition_stats
WHERE index_id < 2
ORDER BY row_count DESC