cookieChoices = {};

Wednesday, 4 May 2016

Find Byte Size Of All tables in database

Find Byte Size Of All tables in database:



SELECT sob.name AS Table_Name,  
  
SUM(sys.length) AS [Size_Table(Bytes)]  
  
FROM sysobjects sob, syscolumns sys  
  
WHERE sob.xtype='u' AND sys.id=sob.id  
  
GROUP BY sob.name 

No comments:

Post a Comment