• Hi

    I had the same issue and replaced the line in the script

    inner join dbo.DimTime t on f.DueDateKey = t.TimeKey

    with

    INNER JOIN dbo.DimDate AS t ON f.DueDateKey = t.DateKey

    hope this helps