I have a simple sql call like :-
select col1,col2 from table1
and sometimes the system runs the following:-
update table1
set col3 = 'something'
where col1 ='s1' and col2 ='s2'
These queries are ran through various applications running on our server and it only happens on one table which has something like 100k rows.
I have tables with millions of rows - it doesn't timeout on them but not sure why it does on this one.
These queries run all day long without any problems but sometimes during the day - specially during peak times - they fail with error - timeout expired -
Can you please tell me what things can I try to resolve this error
Do I need to perform some type of locking ?
Also is it true that if a user is updating a comment and then other user on the system tries to update the same row in the table - will it timeout the 2nd user because the row is locked for editing - is there a way around that?
UPDATEquery. – Barry Kaye May 18 '12 at 14:17ROWLOCKwill help, this will mean that 2 updates do not interfer with each other, but will negatively affect anySELECTstatements that are using the table. Unfortunately it is unavoidable for 2 updates on the same row to compete with each other, but if the index works as expected the amount of time the query will run for should be so small concurrent updates will be a thing of the past! – GarethD May 18 '12 at 15:23