Viewing 15 posts - 7,201 through 7,215 (of 10,143 total)
Paul White NZ (10/12/2010)
WayneS (10/12/2010)
I think instead of clearing the fog, we've managed to make it denser. :w00t:
Ah I see that thread is fully doomed now - Chris Morris has...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 13, 2010 at 2:03 am
Paul White NZ (10/12/2010)
Gianluca Sartori (10/12/2010)
Or, like me, question everything he pretends to know! 😛While I'm messing with your head, how about this:
"LIKE is not SARGable".
It really isn't 🙂
I'm going...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 12, 2010 at 10:15 am
Ray K (10/12/2010)
WOTD: anniversary! (married eight years today!)
Continuously? To the same person? Well done Ray. Happy Anniversary!
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 12, 2010 at 7:20 am
Check again - looks like it's failing on business rather than email.
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 12, 2010 at 7:16 am
Grant Fritchey (10/12/2010)
Brandie Tarvin (10/12/2010)
Paul White NZ (10/11/2010)
Jack Corbett (10/11/2010)
$3k is about right at this point. You can do it for less by finding a cheaper hotel and roommate.
A...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 12, 2010 at 7:01 am
See Cross Tabs and Pivots, Part 1 – Converting Rows to Columns[/url]
and Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs[/url].
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 12, 2010 at 5:23 am
george sibbald (10/11/2010)
WayneS (10/10/2010)
Any suggestions on good, inexpensive, close places...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 12, 2010 at 2:34 am
TheSQLGuru (10/11/2010)
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 11, 2010 at 8:15 am
ta.bu.shi.da.yu (10/11/2010)
However, I'm interested... if you do this on a large dataset, what does the execution plan...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 11, 2010 at 5:54 am
Brandie Tarvin (10/8/2010)
Chris Morris-439714 (10/8/2010)
Brandie Tarvin (10/8/2010)
Grant Fritchey (10/8/2010)
what is it we do for work again?Work is a four letter word. My mother taught me to behavior better than that.
Behaviour,...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 8, 2010 at 8:58 am
CirquedeSQLeil (10/8/2010)
Brandie Tarvin (10/8/2010)
Grant Fritchey (10/8/2010)
what is it we do for work again?Work is a four letter word. My mother taught me to behavior better than that.
So now you have...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 8, 2010 at 8:51 am
Grant Fritchey (10/8/2010)
Jeff Moden (10/8/2010)
The Dixie Flatline (10/7/2010)
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 8, 2010 at 8:28 am
SELECT
COALESCE (dZ_Field1 + CHAR(13) + CHAR(10), '') +
COALESCE (dZ_Field2_A + CHAR(13) + CHAR(10), '') +
COALESCE (dZ_Field3_A + CHAR(13) + CHAR(10), '') +
COALESCE (dZ_Field3_A + CHAR(13) +...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 8, 2010 at 7:07 am
Or this, which works on the raw data i.e. before the first aggregation step:
SELECT
d.kunnr,
d.zterm,
d.cnt
FROM (
SELECT
g.kunnr,
g.zterm,
g.cnt,
rn = ROW_NUMBER() OVER (PARTITION BY kunnr ORDER BY zterm, cnt DESC)
FROM (
SELECT
kunnr,
zterm,
cnt...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 8, 2010 at 2:29 am
GilaMonster (10/7/2010)
Alvin Ramard (10/7/2010)
I thought the next version of SQL was going to be 2011.
Not necessarily. No release date or name has been announced. The reason people have...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
October 8, 2010 at 2:14 am
Viewing 15 posts - 7,201 through 7,215 (of 10,143 total)