How much disk space does a database table take up?

In SQL SERVER, I need to know how much disk space a particular db table is taking. Is there a way to find out?

+3


source to share


1 answer


You can use this query:



EXEC sp_spaceused tableName

+4


source







All Articles