I am facing a serious issue in my production server where the temp DB grow exponantialy. Is there any way we can recover the tempDB space without restarting the SQL service?
Cheers Kannan.
I am facing a serious issue in my production server where the temp DB grow exponantialy. Is there any way we can recover the tempDB space without restarting the SQL service?
Cheers Kannan.
In SIMPLE mode, the tempdb database's log is constantly being truncated, and it can never be backed up. So check it is in Simple Mode
You can use DBCC SHRINKFILE to shrink the tempdb files and recover some space.
DBCC SHRINKFILE ('tempdev', 1) DBCC SHRINKFILE ('templog', 1)
The filenames can be found in the sysfiles table.
You still need to discover the root cause, but this can give you some breathing room until you do. The amount of space you recover will depend on usage and other factors.
Also:
How to shrink the tempdb database in SQL Server
I would ignore posts advising you to change the recovery model or limit the size of tempDB(!).
You need to track down the actual cause of the growth.
If you have the default trace turned on (it's on by default, out of the box), you can retrospectively find out what caused the growth by running this:
Otherwise, you can start a SQL Profiler trace to capture these events. Turn on capturing of Auto Growth events, Sort Warnings and Join Warnings and look for cross joins, hash joins or missing join conditions.
SQL Server exposes a way to identify tempDB space allocations by currently executing queries, using DMVs:
(Ref.)