Get the Count of Entries in Each Table in a DB in SQL

Hi All,
 
This code will helps you to get the count of entries in each table in a DB in SQL:
  1. SELECT  
  2.     sysobjects.Name  
  3.     , sysindexes.Rows  
  4. FROM  
  5.     sysobjects  
  6.     INNER JOIN sysindexes  
  7.     ON sysobjects.id = sysindexes.id  
  8. WHERE  
  9.     type = 'U'  
  10.     AND sysindexes.IndId < 2  
  11. ORDER BY  
  12.     sysobjects.Name   
  13.   
  14. SELECT  
  15.    sum(sysindexes.Rows),GETDATE()  
  16. FROM  
  17.     sysobjects  
  18.     INNER JOIN sysindexes  
  19.     ON sysobjects.id = sysindexes.id  
  20. WHERE  
  21.     type = 'U'  
  22.     AND sysindexes.IndId < 2  
Kindest Regards
Sibeesh