文件组“PRIMARY”中磁盘空间不足- SQL Server 2008
我收到以下错误:
消息 1101,第 17 级,状态 12,第 1 行
由于空间不足,无法为数据库“CTL”分配新页 文件组“PRIMARY”中的磁盘空间。通过放置创建必要的空间 文件组中的对象,向文件组添加其他文件,或者 为文件组中的现有文件设置自动增长。
数据库的属性如下:
File Name Autogrowth
CTL By 10 percent, unrestricted growth
CTL_Indexes By 1 MB, unrestricted growth
我的磁盘剩余空间为 60 GB。
会出现什么问题呢?
Am getting following error:
Msg 1101, Level 17, State 12, Line 1
Could not allocate a new page for database 'CTL' because of insufficient
disk space in filegroup 'PRIMARY'. Create the necessary space by dropping
objects in the filegroup, adding additional files to the filegroup, or
setting autogrowth on for existing files in the filegroup.
Properties of Database are as follows:
File Name Autogrowth
CTL By 10 percent, unrestricted growth
CTL_Indexes By 1 MB, unrestricted growth
And I got 60 GB of space remaining on the disk.
What would be the issue ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它适用于什么版本的 SQL Server? SQL Express 对以这种方式报告的数据库大小有 2GB 的限制。
What edition of SQL server is this for? SQL Express has a 2GB limit on database size that is reported in this way.
我遇到了类似的错误,并通过更改文件属性来解决它,如下所示:
希望这也适用于您。
I faced similar error and solved it by changing file properties as under:
Hope this works for you also.