Viewing 8 posts - 1 through 8 (of 8 total)
Really enjoyed this article, it explained the use of the CTE very well. Great work as usual Jeff.
March 10, 2011 at 2:37 am
Definitely needs more testing, thanks. It will give me something to think about today 🙂
February 7, 2011 at 2:36 am
Great article. It got me thinking, which first thing on a Monday morning is usually impossible! 😀
I rewrote the CASE statement, though I haven't extensively tested this - found a...
February 7, 2011 at 2:26 am
Trevor R Udden (9/13/2010)
Did I miss a major citiation at the end of your article? You might want to try not blantly plagirizing others work. The...
September 13, 2010 at 2:09 am
I like it, but what's the cost of running this on a production server?
November 11, 2008 at 1:19 am
I'm testing Microsoft Reporting Services and using the database provided, this works:
SELECT DISTINCT a.AddressId, a.AddressLine1, a.City
FROM Address a
INNER JOIN Address b ON a.City LIKE '%Ken%' AND b.City LIKE '%ken%'
Not sure...
February 19, 2004 at 4:00 am
So would you just use CREATE INDEX after creating the table ?
February 12, 2004 at 1:53 am
David - table variables are stored in memory, if you search in books online under table variables, you will find some help on them. It looks like microsoft would prefer...
February 11, 2004 at 4:46 am
Viewing 8 posts - 1 through 8 (of 8 total)