Hi All, How to trace the Database space of all database rather than single database by using sp_spaceused? Koteswar Rao.Y
One simple solution which works in all the versions would beEXEC SP_MSFOREACHDB "use ? ; exec sp_spaceused"Madhu