Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a calendar that we're setting up for a client and as a part of it, we're setting up the ability to have events recurring on a monthly basis. I decided on a DataView to reduce the load on the SQL Server as it checks and filters on a per-day basis.

Is there a way to check a month value on a DateTime value in the RowFilter? Or is there a better option? Everything I've found assumes that you're using the actual date value as a comparison, but in fact I'm only interested in the month.

Database column names: StartDate, EndDate (Cover individual events, are set to the original, first datetime of the event.

I've got SQL Server returning the correct events in the correct months for the correct amount of time, but I'm having difficulty getting the code to put it on the days it's supposed to be on. At least when looking at future months.

Any ideas or suggestions?

Here's some of the SQL that returns the correct information for a given month...

DECLARE @Active bit,
@StartDate DateTime,
@EndDate DateTime

SELECT EventId, Name, StartDate, EndDate, [Description],
    IsRecurring, RecurringPeriod, RecurringPeriodLength, CalendarType, RecurringMonth
FROM Events
WHERE Approved = @Active AND
(
    (
        IsRecurring = 1
        AND (@StartDate >= RecurringStart AND @StartDate <= RecurringEnd)
        AND (
                (RecurringPeriod = 'month')
                OR
                (RecurringPeriod = 'week')
                OR
                (RecurringPeriod = 'year' AND MONTH(StartDate) = MONTH(@StartDate))
            )
    ) OR
    (StartDate >= @StartDate AND EndDate <= @EndDate)
)
ORDER BY StartDate ASC
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.