Viewing 15 posts - 241 through 255 (of 508 total)
sqlnoobie (2/28/2011)
tfifield (2/28/2011)
I'm still interested to know how you're handling plurals, tradenames, abbreviations, etc.?
sqlnoobie,
I wouldn't use this technique if I had to handle abbreviations, trademarks, etc. This technique works...
March 3, 2011 at 1:48 pm
Natarshia,
You have to have some way to uniquely identity each row in each table in order to properly join to other tables or you will get multiple joins from one...
March 3, 2011 at 1:19 pm
Michael,
You actually don't have to use the constants from your select statement in the GROUP BY clause. I know it's easy to just copy/paste them into the GROUP BY,...
March 2, 2011 at 11:32 am
Don't feel bad Rich. I once created a utility to concatenate script files into 1 big script and forgot to make sure there was at 1 GO statement between...
March 1, 2011 at 10:11 am
I would also very much like to see the code that didn't work. I've been using Wayne's technique and Jeff's Delimited8KSplit for a while now and those techniques have...
February 28, 2011 at 11:56 am
Thanks everyone for your comments. I should have mentioned in the article about Full Text searches in SQL Server.
As one poster mentioned, it's kind of a pain in the...
February 28, 2011 at 11:28 am
Gail Shaw did some interesting bench marks on this. I found them quite informative.
http://sqlinthewild.co.za/index.php/2010/03/23/left-outer-join-vs-not-exists/
Todd Fifield
February 24, 2011 at 12:22 pm
Jeff Moden (2/21/2011)
February 21, 2011 at 1:18 pm
Jeff Moden (2/17/2011)
tfifield (2/17/2011)
Quirky updates ...[snip]... are just too messy in some cases.
Considering that a Quirky update and a cursor written to do the necessary previous row calculations are nearly...
February 21, 2011 at 11:47 am
eh936,
I'm curious as to exactly what the error message is then. I looked over my query and I can't see an error in it and I don't have Northwind...
February 20, 2011 at 12:20 pm
James A Skipwith (2/17/2011)
Nice article. I also have large calendar tables to deal with - as one of my clients uses a rolling four week cycle starting the first saturday...
February 17, 2011 at 12:25 pm
ziangij (2/16/2011)
One question - will it be good to add a column instead - say IsWeekEnd, IsWeekStart. Will it fare better or worse than the current...
February 17, 2011 at 12:20 pm
Nicole Bowman (2/16/2011)
February 17, 2011 at 12:18 pm
CirquedeSQLeil (2/16/2011)
Thanks for continuing the series.
Jason,
That means a lot to me coming from you.
Todd Fifield
February 17, 2011 at 12:16 pm
Any time the order of processing records has to be considered while accumulating multiple values along the way, a cursor can be the easiest code to program and maintain. ...
February 17, 2011 at 11:45 am
Viewing 15 posts - 241 through 255 (of 508 total)