Ändra
select 1 as counter, @maxDate as Date
till
select 1 as counter, DATEADD(day,1,@maxDate) as Date
Ändra CTE
för att göra det enklare;with GetDates As
(
select DATEADD(day,1,@maxDate) as TheDate
UNION ALL
select DATEADD(day,1, TheDate) from GetDates
where TheDate < @curDate
)
...