Viewing 15 posts - 1,126 through 1,140 (of 15,381 total)
Chris Harshman (11/23/2016)
robert.sterbal 56890 (11/23/2016)
What is on your menu for Thanksgiving?looks like SQL Server Central is having spam for thanksgiving :crazy:
That is on the menu every day. We don't need...
November 23, 2016 at 8:30 am
snomadj (11/23/2016)
November 23, 2016 at 6:58 am
Steve Jones - SSC Editor (11/22/2016)
My son completed his Board of Review last night to earn his Eagle Scout rank. It's been a...
November 22, 2016 at 12:10 pm
I doubt this is "solved", it has only gone away for the moment. It will come back again. This has the classic signs of parameter sniffing gone bad.
Check out Gail's...
November 21, 2016 at 8:50 am
If your string pattern is consistent and you are 100% certain you will never have any decimal points you can do something like this.
Thanks to Lowell for turning this into...
November 21, 2016 at 8:47 am
Brandie Tarvin (11/16/2016)
So I did a quick google on polenta and found this interesting article.
That's interesting. I have never heard most of those "rules" about polenta.
November 16, 2016 at 10:12 am
Nice straight forward question Sergiy. And something that many people don't know.
November 16, 2016 at 8:39 am
Ed Wagner (11/15/2016)
Y.B. (11/15/2016)
That being said I did recently try an Irish Cheddar which was excellent. ...
November 15, 2016 at 12:29 pm
Grant Fritchey (11/15/2016)
VARCHAR(1) is my favorite data type of all time... Well, behind VARIANT, but hopefully that's going to be on the ash heap soon.
Even better when it is defined...
November 15, 2016 at 8:00 am
Budd (11/15/2016)
November 15, 2016 at 7:45 am
WayneS (11/11/2016)
"safe" keeping? More like ransom.:w00t:
Nah a ransom would indicate a possibility of parole. :hehe:
November 11, 2016 at 1:50 pm
Grant Fritchey (11/11/2016)
Marbles?Pretty sure I lost them years ago.
Yeap...it was right around the time I said "I do". 😀 Last I knew she still kept my marbles locked away for...
November 11, 2016 at 1:02 pm
Ed Wagner (11/11/2016)
A good, straightforward question is a nice way to end the week. Thanks, Steve.
Agreed!!! Good question Steve!!
November 11, 2016 at 10:43 am
Matt.Altman (11/11/2016)
November 11, 2016 at 10:23 am
Matt.Altman (11/11/2016)
INSERT INTO dbo.Table2 (Application, Timestamp, Performance, Availability)
SELECT
Application,
CAST(Timestamp AS DATE) as Date,
AVG(CAST(Performance AS decimal(6,2))) as Average_Performance,
AVG(Availability) as Average_Availability
FROM dbo.Table1
GROUP BY CAST(Timestamp AS DATE), Application
END
It...
November 11, 2016 at 10:03 am
Viewing 15 posts - 1,126 through 1,140 (of 15,381 total)