How to check if my SQL Server Express database exceeds the 10 GB size limit?

后端 未结 5 1912
感动是毒
感动是毒 2021-02-06 14:38

I am developing a web site, it uses SQL Server 2008 R2 Express for its database. And in testing, there is a lot of data and images stored into this database.

According t

5条回答
  •  春和景丽
    2021-02-06 15:15

    Execute this SQL command, and it will reveal the disk-space usage of current database.

    sp_spaceused
    

    It also can be used to query the space usage of specific table. This link provides useful information about this problem.

提交回复
热议问题