Viewing 15 posts - 2,416 through 2,430 (of 8,416 total)
Jeff Moden (11/1/2010)
November 1, 2010 at 7:18 am
Jeff Moden (10/31/2010)
Absolutely awesome! What on earth made you look for an alternative to DISTINCT?
Thanks. It's a fair while ago now, so I don't remember exactly what the...
November 1, 2010 at 12:06 am
Super-fast DISTINCT using a recursive CTE:
USE tempdb;
GO
DROP TABLE dbo.Test;
GO
CREATE TABLE
dbo.Test
...
October 29, 2010 at 9:54 pm
Chris Morris-439714 (10/29/2010)
I'd really like to see an example of that
I'll post one in a minute.
...in the meantime, here's another simple and obvious use of rCTE's. No timings because I've...
October 29, 2010 at 9:15 pm
To verify that the bottleneck is network/client speed, try running:
SELECT COUNT(*) FROM table WITH (INDEX(1));
That will force SQL Server to read every row in the table, but only return one...
October 29, 2010 at 7:52 am
The majority of the time taken to run the query is probably taken up in moving that much data across the network for display on the client. From the...
October 29, 2010 at 7:42 am
Jeff Moden (10/29/2010)
I won a $100 bet on it. 😉
Wow!
October 29, 2010 at 6:49 am
gmrose (10/28/2010)
October 28, 2010 at 7:40 pm
Eric Russell 13013 (10/28/2010)
October 28, 2010 at 9:23 am
WayneS (10/27/2010)
Paul White NZ (10/27/2010)
I don't get the SQL Spackle reference...
Thank you! So, spackle (USA) = PolyFilla (rest of world)
edit: thanks also to Tom
October 28, 2010 at 6:49 am
Jeff Moden (10/27/2010)
October 27, 2010 at 9:58 pm
Jeff Moden (10/27/2010)
Steve Jones - SSC Editor (10/27/2010)
October 27, 2010 at 8:28 pm
Jeff Moden (10/27/2010)
October 27, 2010 at 1:15 am
Jeff Moden (10/26/2010)
October 27, 2010 at 12:08 am
Jeff Moden (10/26/2010)
As a side bar, the article also states...Computers with ethernet/token ring addresses generate UUIDs that are guaranteed to be globally unique.
Yup.
So, does anyone know of an article that...
October 26, 2010 at 11:42 pm
Viewing 15 posts - 2,416 through 2,430 (of 8,416 total)