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

  • as ? is your tablename you can use

    sp_MSforeachtable 'SELECT COUNT(*) AS [?] FROM ?'