1

I am using SQL Server 2005. it's a running plant, Everyday large number of data posted into SQL Server 2005

SELECT
 TOP 5000 [T_idx], [T_TAG], [T_Date]
FROM
 [house].[dbo].[total]
ORDER BY
 T_Date DESC

From SQL Server 2005 I executed above script, and observed below error message:

5000 row effected

Msg 9002, Level 17, State 6, Line 1
The log fie for database 'tempdb' is full. Backup the transaction log for the database to free up some log space.

and the 'tempdb' file size 860 Mb and my hard disk free size 9.4 GB. Is this space is enough or do I need to free-up some space?

asked Jan 10, 2014 at 11:47
3
  • 3
    I think you should set auto grow parameter for tempdb log file so it will grow until the disk volume is full. Why is tempdb full, and how can I prevent this from happening? Commented Jan 10, 2014 at 12:51
  • Thankfully this is no longer the exact text for this error message; it no longer gives the incorrect advice to back up tempdb's transaction log. Not sure which version this changed in. Commented Jan 10, 2014 at 16:47
  • i have SQL2005 SP3, i got the "The log file for database 'tempdb' is full. Backup the transaction log for the database to free up some log space" message when i am executing the script. Commented Jan 12, 2014 at 15:48

1 Answer 1

4

Without a suitable index, SQL Server has to perform a full sort of the data to satisfy your query. You can verify this is occurring by looking for a Sort or Top N Sort operator in the execution plan:

Sort

A suitable covering index that would avoid the need to sort in your query is:

CREATE NONCLUSTERED INDEX nc1
ON dbo.total (T_Date)
INCLUDE (T_idx, T_TAG);

When an explicit sort is needed, if SQL Server does not (or cannot) allocate sufficient memory to perform the sort entirely in memory, it will use tempdb. The allocation of sort run space in tempdb is a logged operation, which directly contributes to tempdb log space usage.

In addition, the sort starts a system transaction in tempdb to ensure sort allocations are correctly undone in case the transaction aborts. This open transaction can prevent tempdb log space being reused until the sort completes. Executing DBCC OPENTRAN (tempdb) may show an open transaction with sort_init in the description.

You should also review the SQL Server product documentation and this article to determine how to configure your tempdb database optimally for your workload.

answered Jan 12, 2014 at 21:54
1
  • By using .BAT file we are exporting data from SQLServer 2005 to .TXT file. so that user can see the data for his records. The bat file contains same code as stated above. in addition to that total_Log.ldf file 32.6 GB is there. when we are running the bat file and executing the code in SQL we are getting the same warning message. Commented Feb 3, 2014 at 23:28

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.