Viewing 15 posts - 14,641 through 14,655 (of 14,953 total)
Lynn Pettis (3/2/2008)
....
I appreciate the compliment. Now you've set the bar for me even higher. I would be lucky to put myself at 5 out 10 on...
March 3, 2008 at 10:59 am
I did some tests on the use of IsNull in the Where clause and found the following:
If the column being tested allows nulls, it will use an index or table...
March 3, 2008 at 9:06 am
I have a smartphone (T-Mobile Dash) with Windows Mobile. It's not company issued, but I do use it for business as well as personal needs. The ability to...
February 29, 2008 at 9:08 am
Good article.
One thing I like to include in parameter names is the direction. For example, "@Date_in" would be an input parameter, "@Date_out" would be an output parameter, "@Date_both" would...
February 29, 2008 at 9:01 am
Feifarek (2/28/2008)
February 28, 2008 at 8:43 am
George Heinrich (2/28/2008)
I need to join 2 tables on smalldatetime columns. One of the...
February 28, 2008 at 6:12 am
Good article.
One small quibble with it. In one of the examples, you use "((FullName1 = 'Ed Jones') OR (FullName1 IS NULL))", as an example of how to get Index...
February 28, 2008 at 6:02 am
It looks like the first one should work.
Personally, I'd have done it as a join instead of having the subquery on the company number, but it looks like it should...
February 28, 2008 at 5:07 am
Does it always have a comma between the elements of the name? (Your samples do, but I'm not sure if that's a coincidence.)
Also, does it have entries like "Bob...
February 27, 2008 at 1:25 pm
Luiz (2/27/2008)
I agree with what you guys told. But it seems that other people don't. See, for example, the discussion in http://www.sql-server-performance.com/tips/views_general_p1.aspx. Does anybody...
February 27, 2008 at 1:20 pm
Can you post the code of the query that performs well and the query that doesn't? That would help.
February 27, 2008 at 7:12 am
Where I've seen views slow things down is where a view that pulls a large number of columns from a large number of tables is used to grab a small...
February 27, 2008 at 7:10 am
You might have to add:
if not exists (select * from SYCFStore where store_key = @store_key)
select 'Y'
That might do what you need.
February 26, 2008 at 1:29 pm
I like the ideas in the article at the end, about adding the editorial to the front page, and so on.
I don't think a lot needs to change in the...
February 26, 2008 at 1:14 pm
James A. Lawrence (2/26/2007)
Here's an example, visit
This (somewhat new) SQL site is pretty cool from the aspect of design... and the articles and 'How To' items are very...
February 26, 2008 at 1:02 pm
Viewing 15 posts - 14,641 through 14,655 (of 14,953 total)