To get an overview of dates you have, how about counting in a quarterly overview:
select year(adate) as aYear, datepart(quarter,adate) as aQuarter, count(*) as [Rows in that Quarter]
From yourtable
group by year(adate), datepart(quarter,adate)
If you get data for the time span you're interested, then maybe some other condition of the overall query has to be addressd.
Bye, Olaf.