Viewing 15 posts - 1,981 through 1,995 (of 8,416 total)
When did the Spell Check feature appear? I like it.
May 13, 2011 at 7:19 am
peter-757102 (5/13/2011)
May 13, 2011 at 7:16 am
Or...
SELECT
TTV.Department,
TTV.Receipt,
TTV.StartDate,
TTV.EndDate,
DV.HoursActive
FROM @TestTV AS TTV
JOIN
(
SELECT DISTINCT
...
May 10, 2011 at 1:30 am
Ninja's_RGR'us (5/9/2011)
Run this and look at the xml plan generated :
SELECT COUNT(*) FROM sys.columns
UNION ALL
SELECT COUNT(1) FROM sys.columns
UNION ALL
SELECT COUNT('Whatever string') FROM sys.columns
The plan...
May 10, 2011 at 12:05 am
GilaMonster (5/9/2011)
If there's no where clause on the query, select * from tbl will return all columns, all rows. The presence of nulls changes nothing.
Here's an interesting exception: SELECT *...
May 9, 2011 at 11:37 pm
GilaMonster (5/9/2011)
May 9, 2011 at 11:16 pm
May 9, 2011 at 10:42 pm
mark hutchinson (5/9/2011)
Can people use ngen to compile the assembly and save the JIT overhead?
In theory, yes; but it's almost certainly not worth it. Without going into too many...
May 9, 2011 at 10:32 am
About the little wiggly bits at the start of the green lines (the SQL CLR implementation): CLR code is compiled to an intermediate language to make it portable across different...
May 9, 2011 at 5:39 am
theunique1011 (5/6/2011)
TThere is no automation in either books online or msdn.
The search engine I tried came up with several pages of links, several from MSDN or Books Online. For...
May 8, 2011 at 1:05 am
My numbers (or 'tally') table has a different name from yours, but the following code illustrates another way to write this query. I wasn't sure if you wanted to...
May 8, 2011 at 12:58 am
WayneS (5/6/2011)
Gianluca Sartori (5/6/2011)
This thread is getting more and more exciting.Awesome.
I know what you mean. I, for one, am looking forward to the revealing of the ultimate DelimitedSplit function. It...
May 6, 2011 at 9:37 pm
Chris Houghton (5/6/2011)
Good question. I rushed it and misread "data" compression as "backup compression" so I selected that it would succeed. Haste makes waste.
+1
May 6, 2011 at 9:26 am
Viewing 15 posts - 1,981 through 1,995 (of 8,416 total)