June 30, 2015 at 2:39 pm
what is the best way to make free space in tempdb?
June 30, 2015 at 3:33 pm
Drop all temp tables that are no longer needed.
Close all connections that are no longer needed.
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
June 30, 2015 at 3:37 pm
Add more disk.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 30, 2015 at 4:15 pm
how we come to know that temp tables & connection not needed
June 30, 2015 at 6:22 pm
tempdb is like a scratch pad, so it will be filled up with many unnecessary stuff.
Create temp table (#) wisely. If not required, don't perform sorting operations on large tables, etc to avoid heavy usage of tempdb as these all operations tend to fill up/occupy tempdb files (data and log).
Perhaps, when it comes to a question of cleaning up files, shrink it in smaller chunks.
Best suggestion would be to "add space".
Thanks.
June 30, 2015 at 7:38 pm
You can add a file to tempdb if you need to. Or explicitly expand an existing file(s) yourself.
Be extremely careful if/when trying to modify, or drop, existing objects in tempdb. It's very difficult to quickly accurately determine which ones are in use or not.
SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply