Viewing 15 posts - 22,546 through 22,560 (of 59,072 total)
That's great amplifying information. I'm also glad to see that you can also promote data sources with the understanding that you might need to change some credentials. I'm...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2014 at 9:26 pm
DonlSimpson (10/28/2014)
In case anyone thinks this example is a good idea I just want to add my vote to what Sean already suggested, namely: Never, never use SELECT * FROM...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2014 at 9:21 pm
Eirikur Eiriksson (10/28/2014)
😎
/********************************************************************
-- Stripping out any non-numerical characters
-- EE 2014-10-28 Inital coding
-- EE ...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2014 at 9:08 pm
As a bit of a sidebar, I read some of the comments that follow that article and some dude said the performance of RS "sucks". When I read that...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2014 at 9:19 am
Thanks, ol' friend. Great minds think alike. I just found the following example that uses RS and, at first blush, looks fine. Combined with the official link...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2014 at 8:52 am
I took the two contenders from your good post, Alan, and added on of my own. Here's the code for the function I use for such things. Yeah......
--Jeff Moden
Change is inevitable... Change for the better is not.
October 28, 2014 at 12:34 am
Out of all of these submittals, which post has the fastest code? I'd check for myself but I'm on the run right now but want to check the "best"...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2014 at 4:17 pm
spaghettidba (10/27/2014)
dinsab11 (10/26/2014)
Please some one post the script here, I would be grateful.
Requirements: (this is on A...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2014 at 8:38 am
High Marks for you, Stan. Low marks for SSRS, though. I can't believe that there's nothing built in for this very common requirement. It's amazing how much...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2014 at 1:25 am
Lynn Pettis (10/26/2014)
Jeff Moden (10/26/2014)
QQ-485619 (10/26/2014)
what if that is a column name, e.g.select sum(saletotal)/NumberofDays
select sum(saletotal)/NumberofDays+0.0
Actually: select sum(saletotal)/(NumberofDays+0.0) -- << Remember order of precedence for mathematics.
COFFEE!!! I NEED COFFEE!!! :-D...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2014 at 11:13 pm
I usually go for a simple million row test but data is getting larger and larger so I thought I'd give everyone the opportunity to play with a table the...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2014 at 10:42 pm
Eirikur Eiriksson (10/26/2014)
Jeff Moden (10/25/2014)
Eirikur Eiriksson (10/25/2014)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2014 at 8:16 pm
QQ-485619 (10/26/2014)
what if that is a column name, e.g.select sum(saletotal)/NumberofDays
select sum(saletotal)/NumberofDays+0.0
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2014 at 6:10 pm
dinsab11 (10/26/2014)
I tried to find online the script I need but unable to do so. I even looked Ola Hallengren's scripts but so complicated to make my own.
Please some...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2014 at 6:04 pm
Eirikur Eiriksson (10/25/2014)
--Jeff Moden
Change is inevitable... Change for the better is not.
October 25, 2014 at 1:31 pm
Viewing 15 posts - 22,546 through 22,560 (of 59,072 total)