home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************************************/
- /* This script returns the total available space in the master database. */
- /* */
- /*******************************************************************************/
- declare @dbsize int
- declare @dbreserve int
- select @dbsize = (sum(size) * 2048) / 1024 from master.dbo.sysusages where dbid = 1 and (segmap = 7 or segmap = 3)
- select @dbreserve = (sum(reserved) * 2048) / 1024 from master.dbo.sysindexes where indid in (0, 1, 255)
- select @dbsize - @dbreserve
- go
-