• Hi,

    you can use this query to look into your database, how much storage is really needed:

    USE yourDatabase

    GO

    sp_spaceused

    The value "unallocated space" is the free space in the database, and is not "backuped".

    Or just right click on the database in the SSMS and take a look at "Space Available" on the General Tab.

    Kind regards,

    Andreas