Hi Team,
I want all Databases Size in my instance can any body please provide the script.
Tx
Technology Tips and News
Hi Team,
I want all Databases Size in my instance can any body please provide the script.
Tx
Hi,
Try 'sp_helpdb'.
Thanks,
Stephen
Hi,
Try this...
EXEC sp_MSforeachdb 'USE ?; exec sp_spaceused'
Try this link for three different ways to get database sizes.