Viewing 15 posts - 4,006 through 4,020 (of 8,416 total)
SELECT U.Name,
U.Value
FROM (
SELECT C1Count = COUNT(ASCII(C1)),
...
April 9, 2010 at 1:10 am
Tom.Thomson (4/8/2010)
In SQL Server 2005 the IsNull() function will truncate the length of replacement_value to that of check_expression.
This explanation is wrong. The IsNull function converts to the type...
April 8, 2010 at 11:39 pm
I'm going to try to find a little time tonight to knock the handshake thing up in a CLR routine - it's a lot easier to write the m-from-n requirement...
April 8, 2010 at 11:05 pm
Lynn Pettis (4/8/2010)
April 8, 2010 at 10:56 pm
Garadin (4/8/2010)
April 8, 2010 at 10:54 pm
Tim Walker. (6/10/2009)
Excellent article. Very comprehensive about the theory!
I agree 🙂
Question: (and I wouldn't have even asked it if I hadn't read this first) is what is the point in...
April 8, 2010 at 10:48 pm
Cool - they are essentially the same method - assign a random value to each distinct group, and sort by that first. The only bit of trickery in my...
April 8, 2010 at 7:19 am
I'm sure you will find a way to do this - I had a crack at the handshaking thing because it was in terms I could understand (!) and seemed...
April 8, 2010 at 7:14 am
vk-kirov (4/8/2010)
RBarryYoung (4/7/2010)
the error message 'a domain error has occurred'AFAIK SQRT, LOG and maybe POWER are the only things that return this error.
I vote for this list: SQRT, LOG, LOG10,...
April 8, 2010 at 7:08 am
The fast query plan file is damaged - you seem to have performed multiple search-and-replace operations on the XML - for example 'Ca' was replaced with 'USA'. Unintended replacements...
April 8, 2010 at 6:58 am
You're welcome, Andrew. Thanks again for the poster 😎
April 8, 2010 at 6:46 am
Tom.Thomson (4/8/2010)
Would work for me except that that NOT gets in the way;-). And you've copied my slip of the pen (PRINT instead of SELECT):blush:. And I'm not...
April 8, 2010 at 6:44 am
DECLARE @Example
TABLE (
franchise_id INTEGER NOT NULL,
sector_id ...
April 8, 2010 at 6:31 am
Scalar T-SQL functions suck.
Multi-statement T-SQL functions suck more.
In-line T-SQL functions are awesome.
Multi-statement functions do have their uses - but only if the logic cannot be written in a single SELECT,...
April 8, 2010 at 5:27 am
Viewing 15 posts - 4,006 through 4,020 (of 8,416 total)