• Sounds weird. If you look at the BOL entry for sp_space_used in Remarks it states: "database_size will always be larger than the sum of reserved + unallocated space because it includes the size of log files, but reserved and unallocated_space consider only data pages."

    Try running this satement in that database: EXEC sp_spaceused @updateusage = N'TRUE';

    Lee