Home Forums SQL Server 7,2000 Administration Use sp_MSforeachtable to gen COUNT(*) for each table in MyDBname RE: Use sp_MSforeachtable to gen COUNT(*) for each table in MyDBname

  • This worked for me:

    use <dbname>

    go

    exec sp_msforeachtable 'SELECT COUNT(*) FROM ?;'