Msg 1101, Level 17, State 10, Line 12 Could not allocate a new page for database 'TEMPDB' because of insufficient disk space in filegroup 'DEFAULT'. 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.

What does this mean in plain English.

link|improve this question

4  
You have run out of space in tempdb. The error message seems quite clear to me. What needs clarification? – Martin Smith Jan 20 at 16:29
There is no need to be so abrupt. The poster is obviously asking for clarification on why this is happening. – general exception Jan 21 at 21:37
@generalexception - As the message is in fact very clear it helps if they explain what they don't understand. Are we working from a starting point where they don't know what tempdb is even or why it is related to their query? – Martin Smith Jan 22 at 14:56
Apologies Martin, you should assume I know what tempdb is, what I was getting at was what are the general causes of this error message, i will try to be crystal clear next time so as not to cause confusion or doubt. From now one if i paste an error message I will go through each part and say whether I understand it or not. – SelectDistinct Jan 23 at 9:31
@G_Thang - Well instead of pasting in an error message that has five different parts and saying "What does this mean?" would be better to ask the specific question "What are common causes of running out of space in tempdb" if that's actually what you wanted answered. – Martin Smith Jan 23 at 10:20
show 2 more comments
feedback

2 Answers

up vote 2 down vote accepted

I've found that the normal cause of such explosive growth of TempDB is a query, either ad hoc or in a stored procedure, that has an unexpected many-to-many join in it that some refer to as an "Accidental Cross Join". Behind the scenes, it can create litterally billions of internal rows that end up living in "work" tables that live in TempDB.

The fix isn't to simply allocate more disk space. The fix is to find which query is the cause of the problem and fix it. Otherwise, you'll be stuck in a never ending cycle of having to restart SQL Server, etc, etc.

And, no... you don't have to check to see if TempDB is in the "SIMPLE" recovery mode because you can't set it to anything else. Try it and see.

link|improve this answer
feedback

It means your tempdb database filled up

you can

  1. Restart the SQL Server service, this will recreate the tempdb database
  2. Add another file on another disk with more space
  3. Shrink the log file of tempdb

See Dealing with the could not allocate new page for database 'TEMPDB'. There are no more pages available in filegroup DEFAULT error message for more details

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.