Forum Replies Created

Viewing 15 posts - 1 through 15 (of 17 total)

  • RE: Forecasting with SQL

    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

  • RE: Forecasting with SQL

    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...

  • RE: Forecasting with SQL

    james.waugh28 - Thursday, March 30, 2017 3:51 PM

    mark.wojciechowicz@gmail.com - Monday, February 8, 2010 8:33 PM

  • RE: SQLServerCentral apologizes and you can win a book

    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...

  • RE: Three Rules for Database Development

    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...

  • RE: Three Rules for Database Development

    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...

  • RE: Forecasting with SQL

    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...

  • RE: Forecasting with SQL

    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...

  • RE: Forecasting with SQL

    ltaylor 73774 (2/11/2010)


    Very good article, thanks. When I picked up the code snippet and tried to use it, I saw one problem. In the last section of code, labeled "Create...

  • RE: Forecasting with SQL

    Thanks for the clarifications, Al. I appreciate the finer points and I am sure this will be helpful to any readers as well.

    Mark

  • RE: Forecasting with SQL

    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...

  • RE: Analysis Service Strange Problem

    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...

  • RE: shrinking logfile in SQL 2008

    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...

  • RE: shrinking logfile in SQL 2008

    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...

  • RE: Configuring Kerberos Authentication

    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...

Viewing 15 posts - 1 through 15 (of 17 total)