문제

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 ?

도움이 되었습니까?

해결책

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:

File Name Autogrowth CTL By 20 percent, unrestricted growth CTL_Indexes By 2 MB, unrestricted growth

Hope this works for you also.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top