What happens when you hit the SQL Server Express 4GB / 10GB limit?

后端 未结 7 1791
既然无缘
既然无缘 2020-12-16 11:21

What kind of error occurs? What do users experience? Can you access the database using tools and what if you get it back under the 4GB / 10GB limit?

相关标签:
7条回答
  • 2020-12-16 11:53

    You might see an error like this:

    CREATE DATABASE or ALTER DATABASE failed because the resulting cumulative database size would exceed your licensed limit of 4096 MB per database.

    Or this:

    Could not allocate space for object 'dbo.buyspace'.'PK__buyspace__4B5BD7F83A81B327' in database 'WAYTOOBIG' because the 'PRIMARY' filegroup is full. Create disk space by deleting unneeded files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.

    That's from our error log.

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