How to find out size of the individual databases i

2019-08-25 02:02发布

问题:

Please tell the query to find out size of the individual databases in the sql server 2005?

回答1:

try this sp_spaceused

exec sp_spaceused


回答2:

EXEC sp_MSforeachtable 'EXEC sp_spaceused [?]'