How To Find The Size Of a SQL Server Table
2 ways to find the size of a SQL Server table
· Right Click on the table and then go to the Properties. Then Click on Storage Tab and
you will be able to see the size of Table
· use sp_spaceused system Stored Procedure to find the size of a SQL Server table.
EXEC
sp_spaceused 'TableName'
0 Comments