Viewing 15 posts - 601 through 615 (of 842 total)
Phil Parkin (3/13/2015)
Gary Varga (3/13/2015)
Yes!!! Commented out code. That's what source code control is for. If you need to leave a reference to old code then just leave a comment...
March 13, 2015 at 7:50 am
Gary Varga (3/13/2015)
March 13, 2015 at 7:45 am
Koen Verbeeck (3/12/2015)
below86 (3/12/2015)
Koen Verbeeck (3/12/2015)
below86 (3/12/2015)
I'm not a fan of SSIS 2012 for sure, 2008 is OK.π
What's worse in 2012 than in 2008?
One huge problem I see so...
March 12, 2015 at 8:26 am
Koen Verbeeck (3/12/2015)
below86 (3/12/2015)
I'm not a fan of SSIS 2012 for sure, 2008 is OK.π
What's worse in 2012 than in 2008?
One huge problem I see so far is when...
March 12, 2015 at 8:12 am
Jeff Moden (2/19/2015)
March 12, 2015 at 7:45 am
CELKO (3/11/2015)
March 11, 2015 at 12:51 pm
UNCLE! UNCLE! To SQLguy-7... Ignore my posts, everyone else here is a better SQL developer than me. π
March 10, 2015 at 12:54 pm
Nevyn (3/10/2015)
below86 (3/10/2015)
Nevyn (3/10/2015)
Rewriting the code to sacrifice performance and optimal design just to make it easier to follow makes little sense.
I quess erything I deal with is...
March 10, 2015 at 12:25 pm
Nevyn (3/10/2015)
Rewriting the code to sacrifice performance and optimal design just to make it easier to follow makes little sense.
I quess erything I deal with is batch processing...
March 10, 2015 at 10:11 am
Just do what makes it easier for you to understand, don't worry about what others think. I like to go with the KISS method, Keep It Simple Stupid. ...
March 10, 2015 at 8:17 am
mccree.michael (3/9/2015)
Great way of thinking! π Will have to try change my mindset when I don't understand something.
+1
March 9, 2015 at 7:10 am
Jeff Moden (3/4/2015)
below86 (3/4/2015)
Here is what I came up with:
SELECT l.ID, l.Name, l.YrMnth, l.Enrollment
FROM (SELECT ID, Name, [201401],[201402],[201403],[201404],[201405],[201406]
FROM #Table1) p
UNPIVOT (Enrollment FOR YrMnth...
March 4, 2015 at 9:04 am
Why did the UNPIVOT not work for you?
Here is what I came up with:
SELECT l.ID, l.Name, l.YrMnth, l.Enrollment
FROM (SELECT ID, Name, [201401],[201402],[201403],[201404],[201405],[201406]
FROM #Table1) p
UNPIVOT (Enrollment FOR YrMnth IN ([201401],[201402],[201403],[201404],[201405],[201406])
) AS...
March 4, 2015 at 8:13 am
Luis Cazares (2/11/2015)
below86 (2/11/2015)
Some day, when I get some freee time, Ha Ha, I will run some additional test on our servers.Let me save you some time. π
Thanks for...
February 11, 2015 at 2:38 pm
Eric M Russell (2/11/2015)
February 11, 2015 at 11:00 am
Viewing 15 posts - 601 through 615 (of 842 total)