Viewing 15 posts - 31 through 45 (of 66 total)
Seems my biggest issues are wait locks of the following type:
LCK_M_U (waiting to acquire update lock)
LCK_M_S (waiting to acquire shared lock)
On a single table (parent).
PARENT
|
DATA
Parent is update with refresh overwrite...
February 2, 2011 at 4:46 am
Thank you for the reply. Will investigate SNAPSHOT ISOLATION. Spotted this article re how to enable: http://www.sqlservercentral.com/Forums/Topic711799-146-1.aspx. Will test first.
January 29, 2011 at 10:09 am
thanks for the reply guys, just the push in the correct direction i was looking for.
December 13, 2010 at 4:52 am
Dave Ballantyne (11/4/2010)
The 'reads' value is the number of 8k pages read not the number of rows.
Ah i see , thanks for posting.
November 4, 2010 at 3:10 am
WayneS (10/14/2010)
scott_lotus (10/14/2010)
October 14, 2010 at 11:02 pm
Really interesting topic. We work with a 450Gb db and do many more writes than reads. Nodes that send data can queue several hours before being overwritten which is helpful...
October 14, 2010 at 7:06 am
thank you again for the reply , very helpful stuff.
October 13, 2010 at 6:55 am
GilaMonster (10/13/2010)
Can you post query, table definitions, index definitions and execution plan as per http://www.sqlservercentral.com/articles/SQLServerCentral/66909/It's hard to give anything other than guesses without.
Yip, sorry will do.
October 13, 2010 at 6:41 am
thanks very much for the reply, sorry for all the spawned Qs below:
1) so you are saying the first column in the index is the important one ? (that...
October 13, 2010 at 6:40 am
GilaMonster (10/6/2010)
scott_lotus (10/6/2010)
GilaMonster (10/6/2010)
Stop...
October 6, 2010 at 6:23 am
GilaMonster (10/6/2010)
Stop it, then...
October 6, 2010 at 6:01 am
Grant Fritchey (9/29/2010)
September 29, 2010 at 8:02 am
I agree that NOLOCK on queries are not ideal but its saved show stopping performance issues on several occasions and i have not found anything else to date that can...
September 29, 2010 at 7:38 am
That's a good point. Im sure the query is SELECT only. Added (NOLOCK) to the larger tables used but not the table in question.
1) I thought SELECTS exclusively lock...
September 29, 2010 at 7:02 am
Disabled the problematic index and created a new one. Re-ran the query with no issues. Will continue to monitor.
September 29, 2010 at 4:26 am
Viewing 15 posts - 31 through 45 (of 66 total)