Viewing 5 posts - 16 through 20 (of 20 total)
Primary keys can give a better performance. Because primary key and unique indexes/key garantees uniqueness. Sql server can use this information for generating better plans in equal predicates on the...
June 17, 2009 at 2:40 pm
Btw instead of setting allow page lock = off on the index, you could use a ROWLOCK table hint on the update statement.
In all cases test thoroughly, because if you...
June 15, 2009 at 7:03 am
You might want to try disabling page locking on the clustered index. From what I understand you only have 5000 records in the table and each job updates their own...
June 14, 2009 at 3:38 pm
Thanks to you all.
Jamie I like the query plan for your version. The Id should have been a primary key, so your sql statement should hold up
May 28, 2009 at 1:19 am
Thanks to you all.
Jamie I like the query plan for your version. The Id should have been a primary key, so your sql statement should hold up
May 28, 2009 at 1:19 am
Viewing 5 posts - 16 through 20 (of 20 total)