SQL Server 2008 Express Edition文件大小限制问题

发布于 2024-11-17 19:49:34 字数 271 浏览 2 评论 0原文

我遇到的SQL Server错误如下:

无法为数据库“mainDB”中的对象“dbo.xxx”.“PK_xxx”分配空间,因为“PRIMARY”文件组已满。通过删除不需要的文件、删除文件组中的对象、向文件组添加其他文件或为文件组中的现有文件设置自动增长来创建磁盘空间。

我的问题是为什么 MDF 文件大小仅限于 4GB,而运行的 SQL 实例是 SQL Server 2008 Express Edition(我发现它应该是 10GB)。

The SQL Server error I encounter as below:

Could not allocate space for object 'dbo.xxx'.'PK_xxx' in database 'mainDB' 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.

My question is why the MDF file size is limited to only 4GB while the SQL instance running is SQL Server 2008 Express Edition (which I found it supposed to be 10GB instead).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

微凉徒眸意 2024-11-24 19:49:34

SQL Server 2008 Express supports 4GB.

SQL Server 2008 R2 Express supports 10GB.

Don't forget that the size limit doesn't include the log files (link for SQL Express 2005, but I couldn't find similar for SQL Express 2008 R2 and I don't think this fact has changed). It also doesn't include FILESTREAM data either, which is nice. There are a few useful comments about this here.

This SQL Server Blog entry announced the size increase.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文