June 28, 2005 at 1:58 pm
Then I'll keep the few hairs I have left .
June 28, 2005 at 2:20 pm
Sure, nothing like saving a few nights of bad sleep and hearing the client did you fix it yet, ... did you fix it yet ... did you fix it yet ...
* Noel
June 28, 2005 at 2:23 pm
Child care .
June 28, 2005 at 2:28 pm
You are correct, we're running SP3. Although the Microsoft bug description doesn't seem to explain why "SELECT <nonkey field> FROM Table WHERE KeyField IS NULL" doesn't work (the bug only mentions aggregate functions), I'll assume it's the same issue. Looks like it's time to move to SP4.
If anyone want to check for the problem on their system, the most obvious symptom is that I get various random answers for SELECT COUNT(*) FROM Table WHERE Field IS NULL with every execution.
One workaround is to set MAXDOP=1, but these also work:
SELECT COUNT(*) - COUNT(Field) FROM Table
SELECT SUM(CASE WHEN Field IS NULL THEN 1 ELSE 0 END) FROM Table
Both of these alternatives force a full index scan and avoid the problem with the index seek.
June 28, 2005 at 2:31 pm
Ya but it kills the performance of the index seeks... maybe it's time to test SP4 in developement and see if it breaks anything else before applying it.
June 28, 2005 at 2:47 pm
Can you check what Plan do you get NOW if by any chance you get Index spool there is another of these nasty bugs hidden in those waters
Like I said MAXDOP has been my workaround so far if you feel confortable with SP4 go for it - make sure you get the Post SP4 AWE hotfix if you need it
Isn't it amazing we already need a hotfix right after the realease of SP4
it looks like all efforts are being put on the 2005 release
* Noel
June 28, 2005 at 2:49 pm
Can you imagine how much testing is required just to have that little bugs??? I wouldn't wanna have to manage all that work...
June 28, 2005 at 3:01 pm
Me neither but they are the ones with the big $$$.
With Power comes responsibility
* Noel
June 28, 2005 at 3:07 pm
Still, with a few hundred billions lines of codes, running a few thousands of possible install combinaisons or software/versions, you're gonna miss a bug. There's no way they can come up with a bug free product.
June 28, 2005 at 3:17 pm
>> There's no way they can come up with a bug free product. <<
Absolutely correct but there are some bugs bigger than others. With todays XP technologies, regresssion tests environments and all the $$ you need to make it happen most of those BIG bugs could have been covered. I am not saying it is a small task but remember we are talking Microsoft here not a Mom and Pap shop
BTW I don't think is billions of line of code
millions maybe
* Noel
June 28, 2005 at 6:10 pm
There was a leak a few months/years back. The code was a 600+ mb ZIPPED file. That accounted for only 2% of the source code (win 2K).
It may not be billions, but it sure is 100M+.
Viewing 11 posts - 16 through 25 (of 25 total)
You must be logged in to reply to this topic. Login to reply