I want to get a resultset of every table in the database, with the
current record count of each. What is the easiest way to do this?
I can get the list of tables with:
Select s.name from sysobjects s where xtype = 'U'
each s.name is a table name, but I'm not sure how to join a record count
column to the resultset.
Thanks,
RickN
current record count of each. What is the easiest way to do this?
I can get the list of tables with:
Select s.name from sysobjects s where xtype = 'U'
each s.name is a table name, but I'm not sure how to join a record count
column to the resultset.
Thanks,
RickN
Comment