Calculating DB backup size

后端 未结 2 595
轮回少年
轮回少年 2021-01-04 22:41

Is there a way to know the size of a database full backup file before we actually do the backup? I did some analyses and figured sp_spaceused could give a close figure but t

相关标签:
2条回答
  • 2021-01-04 23:22

    sp_spaceused should be pretty close if you look at the reserved space.

    Estimating the Size of your Database Backups

    Paul Randal blogged recently about how to know how large your TLOG backup might be:

    How much data will the next log backup include

    A combination of the two values, seems to be really close to the actual backup size in some brief testing.

    0 讨论(0)
  • 2021-01-04 23:32

    It's pretty much the size of the mdf and ldf files.

    0 讨论(0)
提交回复
热议问题