Viewing 15 posts - 1,471 through 1,485 (of 14,953 total)
Stefan Krzywicki (5/17/2012)
Steve Jones - SSC Editor (5/17/2012)
Thanks to new data mining abilities I think I read that they have the ability, to 75% or 90% or something like that,...
May 17, 2012 at 11:09 am
Just to jump on the bandwagon: I've been performance tuning SQL Server for 11 years now, and I'd never use this "own optimizer" solution. Lots of better, more standard,...
May 17, 2012 at 11:07 am
And on the subject of "what is big data", I define it as any data where quantity has more of an impact on performance than normalization does. In other...
May 17, 2012 at 11:01 am
CrankyRat (5/16/2012)
What an idiot. Saying relational technology is obsolete is like saying algebra...
May 17, 2012 at 10:58 am
Format the data into an XML block, insert into a log table with an XML column. You can do that in a trigger pretty easily.
May 17, 2012 at 6:41 am
Michael Valentine Jones (5/15/2012)
May 17, 2012 at 6:30 am
opc.three (5/15/2012)
GSquared (5/15/2012)
May 15, 2012 at 11:12 am
I found a suggestion that says that if you want a default, use 1=1 as the test, and put it last. Haven't tried that, but it would go where...
May 15, 2012 at 11:09 am
What you want is probably sp_send_dbmail. Look that one up, play with it a bit, and see if it'll do what you need.
Another possibility, of course, is SSRS. ...
May 15, 2012 at 11:05 am
Check layers between the user and the table. Proc, code that calls the proc (or inline SQL), connection, et al. The problem will be in one of those.
May 15, 2012 at 11:04 am
Lynn Pettis (5/15/2012)
ByronOne (5/15/2012)
=Switch(sum(Fields!YTDBudget.Value)/sum(Fields!YTDActual.Value) -1 <-2.5, "Green", sum(Fields!YTDBudget.Value)/sum(Fields!YTDActual.Value) -1 <=-5.0, "Yellow", sum(Fields!YTDBudget.Value)/sum(Fields!YTDActual.Value) -1 <-5, "Red")
I've tried this but it seems...
May 15, 2012 at 9:23 am
Here's an all-TSQL version:
;
WITH Seeds(Seed)
AS (SELECT *
...
May 15, 2012 at 9:17 am
ByronOne (5/15/2012)
I actually want it to be below -5 (ie -6, -7 etc like you say...)
Change the function to <-5 instead of >-5, see if that does what you need.
May 15, 2012 at 8:47 am
Lynn Pettis (5/15/2012)
May 15, 2012 at 8:46 am
Viewing 15 posts - 1,471 through 1,485 (of 14,953 total)