"Primary Filegroup is Full" in SQL Server 2008 Standard for no apparent reason
Posted
by Anton Gogolev
on Stack Overflow
See other posts from Stack Overflow
or by Anton Gogolev
Published on 2009-12-23T09:33:16Z
Indexed on
2010/03/26
8:13 UTC
Read the original article
Hit count: 412
sql-server-2008
|filegroup
Our database is currently at 64 Gb and one of our apps started to fail with the following error:
System.Data.SqlClient.SqlException
: Could not allocate space for object'cnv.LoggedUnpreparedSpos'.'PK_LoggedUnpreparedSpos'
in database'travelgateway'
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.
I double-checked everything: all files in a single filegroup are allowed to autogrow with a reasonable increments (100 Mb for a data file, 10% for a log file), more than 100 Gb of free space is available for the database, tempdb
is set to autogrow as well with plenty of free HDD space on its drive.
To resolve a problem, I added second file to the filegroup and the error has gone. But I feel uneasy about this whole situation.
Where' the problem here, guys?
© Stack Overflow or respective owner