0

I'm working on a SQL Server database and want to see how much space each table has without looking at each one individually. Is there a tool in Microsoft SQL Server Management Studio 18 or a SQL query and find out the data size?

I have already searched the web but unfortunately only found advertisements.

I would be very grateful for any advice.

marc_s
  • 704,970
  • 168
  • 1,303
  • 1,425
Doncarlito87
  • 243
  • 3
  • 14
  • You might also want to have a look at my response here: https://stackoverflow.com/questions/7892334/get-size-of-all-tables-in-database/7892349#7892349 - this is a SQL query you can run to get the table sizes – marc_s Nov 25 '20 at 09:08

1 Answers1

1

You can get a report with Table size in SQL Server Management Studio (SSMS) Select you database, then Reports>Standard Reports>Disk Usage By Table

enter image description here

Kemal AL GAZZAH
  • 890
  • 6
  • 13