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?
-
3I 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?valex– valex2014年01月10日 12:51:01 +00:00Commented 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.Aaron Bertrand– Aaron Bertrand2014年01月10日 16:47:25 +00:00Commented 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.venkat– venkat2014年01月12日 15:48:28 +00:00Commented Jan 12, 2014 at 15:48
1 Answer 1
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.
-
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.venkat– venkat2014年02月03日 23:28:35 +00:00Commented Feb 3, 2014 at 23:28