I'm using SQL Server 2005 and would like to know how I can get a list of all tables with the number of records in each.
I know I can get a list of tables using the sys.tables view, but I'm unable to find the count.
Thank you
|
I'm using SQL Server 2005 and would like to know how I can get a list of all tables with the number of records in each. I know I can get a list of tables using the Thank you
| ||||
|
feedback
|
| |||
|
feedback
|
|
I might add that sysindexes.rows is an approximation of the number of rows. I'd run a | |||
feedback
|
|
Perhaps something like this:
| |||
|
feedback
|
|
For what it's worth, the sysindexes system table is deprecated in SQL 2008. The above still works, but here's query that works going forward with SQL 2008 system views.
| |||
|
feedback
|