﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebScheduler - Do you have any sample code for calculating scheduled time?</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Do-you-have-any-sample-code-for-calculating-scheduled-time/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Do you have any sample code for calculating scheduled time?</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Do-you-have-any-sample-code-for-calculating-scheduled-time/</link><pubDate>Wed, 05 Jan 2011 02:43:18 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello Tim,&lt;/p&gt;&lt;p&gt;Ok, I understand about your explanation. &lt;br /&gt;However, I think it would be very difficult to query this recurring event in your scenario. &lt;br /&gt;To create a recurring event, there are much options such as Daily, Weekly, Monthly, Yearly. Each of them have their own options and also the range options.&lt;br /&gt;&lt;br /&gt;In range options there are also No End Date, End After X occurences, and End By.&lt;br /&gt;&lt;br /&gt;If user choose After X occurences, you could not query based on EndDate because EndDate is always null.&lt;br /&gt;If user choose End By, you can query based on EndDate, but you also need to calculate the the other options.&lt;br /&gt;e.g Reccurence pattern "Daily". It has two options such as Every X days and Every week days.&lt;/p&gt;
&lt;p&gt;If user choose Every X days, maybe you would not difficult to calculate it.&lt;br /&gt;But if user choose every week days, you also need to reduce the calculation with not week days.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Do you have any sample code for calculating scheduled time?</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Do-you-have-any-sample-code-for-calculating-scheduled-time/</link><pubDate>Tue, 04 Jan 2011 12:06:13 GMT</pubDate><dc:creator>tim@wrightsweb.com</dc:creator><description>&lt;p&gt;This solution will not work for the need that I have. First I need only the total hours between a user specified date range and your solution appears to only calculate a total from beginning to end. Secondly this solution only works if the recurring event has been set to end after a set number of recurrences hence the use of TotalRecurrences field. This would not work for recurring events that have no end or are set to end on a specific date.&lt;/p&gt;
&lt;p&gt;The recurring event has many options for setting the scope of the recurring event. Your solution only covers one. For instance if a recurring schedule is altered on one instance the code would need to be aware of that condition. &lt;/p&gt;
&lt;p&gt;Do you have other solutions for this recurring events query?&lt;/p&gt;</description></item><item><title>Do you have any sample code for calculating scheduled time?</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Do-you-have-any-sample-code-for-calculating-scheduled-time/</link><pubDate>Tue, 04 Jan 2011 03:57:05 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello Tim,&lt;/p&gt;&lt;p&gt;I think you would not need to calculate the start time and end time. You can use TotalRecurrence to have the total hour.&lt;/p&gt;
&lt;p&gt;e.g&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;SELECT r.ID, r.ResourceName,re.Subject,  re.StartTime, re.EndTime,ri.TotalRecurrences ,((CAST(DATEDIFF(MINUTE, re.StartTime, re.EndTime) AS DECIMAL))/60) AS HoursScheduled, ri.TotalRecurrences *((CAST(DATEDIFF(MINUTE, re.StartTime, re.EndTime) AS DECIMAL))/60) AS TotalHours
FROM dbo.[RecurringEvents] re        
     INNER JOIN dbo.Resources r ON re.ResourceID = r.ID
     
     INNER JOIN dbo.RecurrenceInfo ri ON re.RecurrenceID = ri.ID
     
Where r.ID='1'
&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p /&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Do you have any sample code for calculating scheduled time?</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Do-you-have-any-sample-code-for-calculating-scheduled-time/</link><pubDate>Mon, 03 Jan 2011 04:10:48 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I need more time to discuss this scenario with our developer teams. Please bear with me.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Do you have any sample code for calculating scheduled time?</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Do-you-have-any-sample-code-for-calculating-scheduled-time/</link><pubDate>Wed, 29 Dec 2010 11:12:22 GMT</pubDate><dc:creator>tim@wrightsweb.com</dc:creator><description>&lt;p&gt;I need to be able to retrieve a total count of hours that a specific resource has been scheduled for within a specific date range. &lt;/p&gt;
&lt;p&gt;Let's say that I have a resource that has three events in the webscheduler that have a duration of 2.5 hours each during the week of 12/26/2010 and 1/1/2011 (total of 7.5 hours). That same resource also has a recurring event which has two events during that same week that have a duration of 3 hours each (total of 6 hours).&lt;/p&gt;
&lt;p&gt;I would then query the database to get all hours that the specific resource was scheduled for during the date range of 12/26/2010 and 1/1/2011. The query should return 13.5 hours which is the total of all recurring events and events that was scheduled during that period of time for that specific resource.&lt;/p&gt;
&lt;p&gt;I would like a count of total hours and a list of dates and hours that make up the total hour count.&lt;/p&gt;
&lt;p&gt;Below is some tsql code that I have to query the Events table. The events table is simple to query but to get the same results from the Recurring Events table it is very complex due to all the options for range of the recurrence. &lt;/p&gt;
&lt;p&gt;I want to know if you have some sample code to accomplish this for the Recurring Events or if you can help.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;SELECT&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; r&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;ID&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;,&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; r&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;ResourceName&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;,&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; c&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;CategoryName&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;,&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; e&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;StartTime&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;,&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; e&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;EndTime&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;,&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;((&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #ff00ff; font-size: 13px"&gt;&lt;span style="color: #ff00ff; font-size: 13px"&gt;CAST&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;(&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #ff00ff; font-size: 13px"&gt;&lt;span style="color: #ff00ff; font-size: 13px"&gt;DATEDIFF&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;(&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;MINUTE&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;,&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; e&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;StartTime&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;,&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; e&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;EndTime&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;)&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;AS&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;DECIMAL&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;))/&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;60&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;)&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;AS&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; HoursScheduled&lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;FROM&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; dbo&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;[Events] e&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;         &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;     INNER&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;JOIN&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; dbo&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;Resources r &lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;ON&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; e&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;ResourceID &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;=&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; r&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;ID&lt;/span&gt; &lt;/p&gt;
&lt;p&gt;     &lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;INNER&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;JOIN&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; dbo&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;Categories c &lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;ON&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; e&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;CategoryID &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;=&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt; c&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 13px"&gt;ID &lt;/span&gt;&lt;/p&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;
WHERE&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt; r&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt;ID&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;=&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;'6'&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;AND&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;(&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt;e&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt;StartTime &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;BETWEEN&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;'12/26/2010'&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;AND&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;'1/1/2010'&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;)&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;AND&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt;&lt;span style="color: #0000ff; font-size: 13px"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;(&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt;e&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt;EndTime &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;BETWEEN&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;'12/26/2010'&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;AND&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 13px"&gt; &lt;/span&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;&lt;span style="color: #ff0000; font-size: 13px"&gt;'1/1/2010'&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #808080; font-size: 13px"&gt;&lt;span style="color: #808080; font-size: 13px"&gt;)
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
&lt;p&gt;&lt;span style="font-size: 13px"&gt;&lt;/span&gt; &lt;span style="font-size: 13px"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>Do you have any sample code for calculating scheduled time?</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Do-you-have-any-sample-code-for-calculating-scheduled-time/</link><pubDate>Wed, 29 Dec 2010 00:23:08 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello Tim,&lt;/p&gt;&lt;p&gt;I am sorry but I don't quite understand about what you really need. Could you be more specific such as what exactly your scenario looks like? &lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Do you have any sample code for calculating scheduled time?</title><link>http://www.intersoftsolutions.com/Community/WebScheduler/Do-you-have-any-sample-code-for-calculating-scheduled-time/</link><pubDate>Mon, 27 Dec 2010 22:10:18 GMT</pubDate><dc:creator>tim@wrightsweb.com</dc:creator><description>&lt;p&gt;Do you have any sample code for calculating scheduled time for resources for a given week? &lt;/p&gt;
&lt;p&gt;This sample code would need to query from Events and RecurringEvents tables. The recurrenceInfo table would need to be queried as well to determine the range of the recurring event.&lt;/p&gt;</description></item></channel></rss>