磁盘空间song2012年12月28日sql server CREATE TABLE #FixedDrives(Drive CHAR(1),MBFree INT) INSERT #FixedDrives EXEC xp_fixeddrives SELECT * FROM #FixedDrives 参考:SQL Advent 2012 Day 10: SQL Server Maintenance