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
  • 732,580
  • 175
  • 1,330
  • 1,459
Doncarlito87
  • 359
  • 1
  • 8
  • 25
  • 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
  • 967
  • 6
  • 15