Viewing 13 posts - 1 through 13 (of 13 total)
I don't believe it does but I'll test and profile just in case. Thanks.
May 14, 2021 at 3:21 pm
Thanks for the reply, Brian. The paths used are purely as an example and not used in production.
Yes, folder permissions are possibly an option, but I wanted to try and...
May 14, 2021 at 3:20 pm
Paul White NZ (4/2/2010)
You're much more likely to skip rows, read rows twice, read rows that logically never existed..etc..at the READUNCOMMITTED (NOLOCK) isolation level...but that's what it does 🙂
Yes, I...
April 2, 2010 at 4:01 am
Lamprey13 (4/1/2010)
SELECT Document, rcFROM ...
April 2, 2010 at 3:46 am
Duplicate and missing records on queries without NO LOCK hints too?! Thats a very simple but clear explanation and seems it could be common occurence than with the NO LOCK...
April 2, 2010 at 3:38 am
Thanks Lamprey. Missing and duplicating records on commited data becuase of NO LOCK hints is news to me. Hopefully this will be something we encouter few and far between. Something...
April 1, 2010 at 5:44 pm
Thanks for the detailed analysis Paul, I understand why the query is slow from your explanation.
Moving the data to a SQL2008 server stops the speed issue. The updated optimizer must...
April 1, 2010 at 3:00 am
Ok, there wasn't as many as I thought.
The primary key is PREFIX, DOCUMENT, SEQNO in that order, all ascending.
CREATE INDEX [Corder] ON [dbo].[ILines]([COrder]) WITH FILLFACTOR = 90...
March 31, 2010 at 12:39 pm
In addition to what Paul suggests (using a UNION), you should remove the NOLOCK hint. Unless you don't mind sending potentially wrong data back to the user. 😉
Thanks for the...
March 31, 2010 at 12:07 pm
Thanks for the reply.
No, this test was on a SQL2000 server (using 2008 Managemeent studio). I'll move the data to a 2008 SQL sever to see if the results are...
March 31, 2010 at 11:49 am
As Chris has already advised, you are trying to insert the same data into the table which is already there.
Your primary key on this table is the columns OrganizationNumber &...
March 31, 2010 at 6:43 am
Also, if the SEQNO is the same value on the 2 clauses, it returns the results instantly too. If they are different, the delay is there. < This is really...
March 31, 2010 at 5:52 am
Viewing 13 posts - 1 through 13 (of 13 total)