Viewing 15 posts - 61 through 75 (of 98 total)
Sorry, I should have been more clear, as both run in under 1ms.
In regards to the cost versus quantity of use argument that you have presented, I agree, both need...
February 12, 2008 at 2:24 pm
I think you'll find that the difference between 1ms and 1ms is pretty negligible. Feel free to test for yourself.
What boundary would you set for flexible coding versus running...
February 12, 2008 at 1:54 pm
I think I have a different take on this situation.
In looking at the initial code presentation, well frankly, why loop if you don't have to? And if we can...
February 12, 2008 at 1:27 pm
I don't know why I didn't think of this last week, but the problem (in my case) was in the database compatability level. I was working in an old...
February 11, 2008 at 10:45 am
I get the same error with an English install of 2005 Standard.
I have not been able to find anything on the problem...
February 11, 2008 at 9:59 am
I think you'll find that if you want to do a "true" (well not true, but closer than it was) "right sizing" of the comparison, then you'll need to make...
February 6, 2008 at 3:29 pm
Hopefully this will be more helpful thank my silly reply earlier...
You'll need something like:
SELECT * FROM dbo.Users
WHERE Id NOT IN (
SELECT DISTINCT U.Id
FROM dbo.OrderItems OI
INNER JOIN dbo.Orders O...
July 30, 2007 at 2:47 pm
My apologies. You are correct. I responded too quickly and with out reading your second post well.
July 30, 2007 at 2:33 pm
Unless I am missing something, the fix is simple to make. Just move your NOT IN arguments into the JOIN clause.
Select * from sometable inner join sometable2 on 1.id =...
July 30, 2007 at 1:40 pm
Stephen,
Looking at your search arguments, I find that you are going to get two types of return records:
(mb_member_type.mbt_code = N
July 30, 2007 at 12:42 pm
"poser vault" ... LOL
Unfortunately, PowerVault can refer to a few different products. The external, direct attached SCSI options can provide very good performance, but as with any direct attached you'll...
December 29, 2006 at 10:41 am
The NAS of today is much better than the NAS of yesterday. That may sound corny, but it is very true. Like you, I have worked with SANs for some...
December 28, 2006 at 1:55 pm
FAST_FORWARD is FORWARD_ONLY and READ_ONLY together.
December 8, 2006 at 5:11 pm
All of this seems like a lot of work to replace a cursor in a row by row process is needed.
Why is it that people don't seem to understand that...
December 8, 2006 at 10:57 am
Glad that is working for you Hemant. I must be honest though, I am suprised that inserting 10 records would take that long.
I would verify that you have appropriate indexing...
December 6, 2006 at 9:43 am
Viewing 15 posts - 61 through 75 (of 98 total)