October 11, 2013 at 2:42 pm
Does having multiple tempdb files on different drives help with contention?
October 11, 2013 at 3:33 pm
sunny.tjk (10/11/2013)
Does having multiple tempdb files on different drives help with contention?
Yes... especially if they're on different drives.
--Jeff Moden
Change is inevitable... Change for the better is not.
October 14, 2013 at 2:56 pm
Jeff Moden (10/11/2013)
sunny.tjk (10/11/2013)
Does having multiple tempdb files on different drives help with contention?Yes... especially if they're on different drives.
Thanks Jeff.
October 14, 2013 at 5:32 pm
sunny.tjk (10/14/2013)
Jeff Moden (10/11/2013)
sunny.tjk (10/11/2013)
Does having multiple tempdb files on different drives help with contention?Yes... especially if they're on different drives.
Thanks Jeff.
Another way to reduce contention is to turn on Trace Flag 1118. Please see the following article where one of the world's leading authorities on the subject talks about it.
http://www.sqlskills.com/blogs/paul/misconceptions-around-tf-1118/
--Jeff Moden
Change is inevitable... Change for the better is not.
October 15, 2013 at 8:06 am
if you are seeing latch contention on the SGAM pages in tempdb (waitresource 2:1:3) just creating multiple files on the same disk will be enough to alleviate this.
---------------------------------------------------------------------
October 15, 2013 at 8:19 am
george sibbald (10/15/2013)
if you are seeing latch contention on the SGAM pages in tempdb (waitresource 2:1:3) just creating multiple files on the same disk will be enough to alleviate this.
I agree. They don't have to be on different disks. Instituting Trace Flag 1118 sometimes makes even that unnecessary although I generally do both automatically now, even when no such wait problem currently exists. It's one less thing to have to worry about in the future.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply