Reputation: 125
In SQL SERVER, I need to know how much disk space does a particular db table consumes. Is there a way to find out?
Upvotes: 3
Views: 1242
Reputation: 410
You can use this query:
EXEC sp_spaceused tableName
Upvotes: 4