April 3, 2013 at 4:13 am
Hi,
I am getting below specified running out space alert even autogrowth option is enabled and disk got enough space.
Alert message :'The file group "PRIMARY" for the database "tempdb" in SQL instance "MSSQLSERVER" on computer "XXX" is running out of space.
Tempdb autogrowth option is enabled [500MB, Unrestricted Growth] and Tempdb files disk got 300 Gb free space. present Tempdb size is 55GB.
Please let me know if you need any other details to resolve this / help to resolve this .
Thanks in Advance,
Krishna
April 3, 2013 at 4:48 am
Hi Krishna,
You must be aware that restarting the Sql Server services can free up all the space for tempdb, but this is not a solution for a very busy 24*7 Production Server.
Can you check the recovery model that is set and the result of the below query for your temp db select name,log_reuse_wait,log_reuse_wait_desc from sys.databases where name like 'tempdb' ??
April 3, 2013 at 5:26 am
Thank you for your reply....
Temp DB recovery Model : 'SIMPLE'
log_reuse_wait_desc shows 'ACTIVE_TRANSACTION'
--Krishna
April 3, 2013 at 5:37 am
rollercoaster43 (4/3/2013)
Can you check the recovery model that is set and the result of the below query for your temp db select name,log_reuse_wait,log_reuse_wait_desc from sys.databases where name like 'tempdb' ??
Why are you asking for the recovery model (always simple for TempDB) and log reuse reasons when the error says that the *data* file is full, not the log?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 3, 2013 at 5:37 am
The data file is the one that ran out of space, not the log, so looking at log reuse is a bit of a waste of time. Instead, you need to look at what's using tempDB (not currently, in general) and either tune those queries to not use so much tempDB space or add more space to TempDB (more files or larger file)
I recommend tuning the queries that run so that they use less TempDB space.
p.s. TempDB should not in general be autogrowing. You should be monitoring the space that TempDB uses and have manually set the data files to a size large enough to accommodate regular activity.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 4, 2013 at 4:12 am
Hi Gail Shaw,
Thank you very much your valuable/clear reply.
Issue been resolved by identifying queries causing the growth using these DMV's 'dm_db_session_space_usage', 'dm_db_task_space_usage'.
Thank you,
Krishna
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply