Question

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 ?

Was it helpful?

Solution

What edition of SQL server is this for? SQL Express has a 2GB limit on database size that is reported in this way.

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top