Viewing 15 posts - 1 through 15 (of 17 total)
Hi r987d,
If you download the link at the end of the article, it has the data used for the example and all the queries step-by step.
m
August 15, 2018 at 8:01 pm
rchantler,
R would be a brilliant approach and probably much easier to implement. If you google forecasting + R or linear regression + R you'll come up with a lot...
May 19, 2017 at 8:39 am
April 20, 2017 at 5:37 am
Last 3 dates for each month in a calendar table
WITH dates as (
select
dateId
, calendarMonthName
, ROW_NUMBER() over (partition by calendarMonthName order by dateId desc) as id
from DimDate
where calendarYear = 2013
)
SELECT...
December 6, 2013 at 8:30 am
I may just be old school, but I can't STAND not having an integrated development environment amongst all the developers.
Kraig - I completely agree. In an ideal scenario, you...
September 21, 2012 at 5:04 pm
There are a variety of reasons not to develop on a shared database. As others have already mentioned, when you are developing locally you can avoid all sorts of...
September 21, 2012 at 4:09 pm
Yes. That should work fine for you to give a directional insight into your data. Products, customers or risk types are simply discrete values by which to partition the forecast...
February 1, 2012 at 8:08 pm
Hi Grasshopper,
I do not have any examples of weighted averages, but you may considering looking at exponential smoothing which weights, more heavily, recent periods.
I do suggest making sure...
May 27, 2011 at 2:03 pm
ltaylor 73774 (2/11/2010)
February 11, 2010 at 9:35 am
Thanks for the clarifications, Al. I appreciate the finer points and I am sure this will be helpful to any readers as well.
Mark
February 9, 2010 at 9:14 pm
Hi Martin,
I appreciate your comments and words of pause. It is important to realize that picking up this forecast model will not get you a job as a forecaster...
February 9, 2010 at 7:55 am
Hi,
I see this is a very old thread, but I have a similar issue and replacing the partition does not resolve the issue. In my case, I have...
July 10, 2009 at 2:26 pm
Gail and Jeffery, In understand and agree with much of what you have to say. Regarding frequent backups of the log file, this really does not make a difference...
May 12, 2009 at 8:40 am
Hi - I know this topic is a little dead, because it was posted in February, However I am going through this same problem now as we just completed a...
May 12, 2009 at 7:52 am
Hi Brian, Great Article. I just spent the last week setting Kerberos up so this is really synchronicity that this topic is showing up today. You explain it...
December 11, 2008 at 6:33 am
Viewing 15 posts - 1 through 15 (of 17 total)