Viewing 15 posts - 7,201 through 7,215 (of 8,760 total)
Quick thought, there is something missing in the code, check that all variables are declared and initialized.
😎
September 3, 2014 at 7:55 am
crazy_new (9/3/2014)
September 3, 2014 at 4:32 am
Did a quick little testing, see the results, DDL, data generator and test code below. Code also attached.
Feel free to play around and improve 😉
😎
-----------------------------------------------------------------------------------
Dense set: 1000000 (10000 customers x...
September 3, 2014 at 3:39 am
Koen Verbeeck (9/3/2014)
Eirikur Eiriksson (9/2/2014)
Quick thought, if the source structure is changed, the whole data pipeline (data flow path) has to be updated, including the destination definition.😎
And even more important,...
September 3, 2014 at 2:15 am
Lynn Pettis (9/2/2014)
AARRRGGGGGGG!!!!!!!!!!! Someone fire the man. He has no business in this business.
Think that here is a proper use for a TERMINATOR:-D
😎
September 2, 2014 at 3:16 pm
Lynn Pettis (9/2/2014)
Nope, I meant what I wrote; begininators. My term for the improper use of terminators at the beginning of statements. 😀
Are you working for Skynet?
😎
September 2, 2014 at 3:03 pm
ppritts (9/2/2014)
September 2, 2014 at 2:57 pm
Lynn Pettis (9/2/2014)
GilaMonster (9/2/2014)
"The inserted table only contains the rows inserted into the table. I need rows from other tables as well. Hence I can't use a set-based solution"Err.. ok...
I...
September 2, 2014 at 2:48 pm
crazy_new (9/2/2014)
September 2, 2014 at 2:36 pm
GilaMonster (9/2/2014)
"The inserted table only contains the rows inserted into the table. I need rows from other tables as well. Hence I can't use a set-based solution"Err.. ok...
As I said...
September 2, 2014 at 2:33 pm
Ed Wagner (9/2/2014)
Eirikur Eiriksson (9/2/2014)
Ed Wagner (9/2/2014)
...that was pretty simple stuff that should have been easy for him to troubleshoot on his own.I'm glad that optimism prevails:-D
😎
Thanks, but I guess...
September 2, 2014 at 2:23 pm
Further on the previous solution, here is an executable sample
😎
USE tempdb;
GO
;WITH BASE_DATA(NNAME,NGROUP) AS
(SELECT NNAME,NGROUP FROM (VALUES
('Bill','Finance')
,('Nancy','Ops')
,('Bill','IT')
...
September 2, 2014 at 2:11 pm
Viewing 15 posts - 7,201 through 7,215 (of 8,760 total)