Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4553000
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T16:53:00+00:00 2026-05-21T16:53:00+00:00

I have the following data structure. Tables: CalendarEvents CalendarEventID AccountID FromDate (datetimeoffset(7)) ToDate (datetimeoffset(7))

  • 0

I have the following data structure.

Tables:

CalendarEvents

  • CalendarEventID

  • AccountID

  • FromDate (datetimeoffset(7))

  • ToDate (datetimeoffset(7))

CalendarEventRepetition

  • CalendarEventID

  • Monday (bit)

  • Tuesday (bit)

  • Wednesday (bit)

  • Thursday (bit)

  • Friday (bit)

  • Saturday (bit)

  • Sunday (bit)

  • EveryNWeek int

  • EndAfterNOccurences int

All datetimeoffset values are UTC values in relation to DateTime.MIN and are used to calculate time values only.

I need to be able to return upcoming CalendarEvents sorted by their start time from TODAY. This requires a calculation of ORDER BY parameter. I’ve never done custom t-sql sorting any inputs would be greatly appreciated.

In the domain logic I was doing the following to calculate the SoonestOccurrence for weekly events:

DateTime startTime = System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(e.FromDate.LocalDateTime, TimeZone);

foreach(CalendarEvent e in events)
{
            DateTime endTime = System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(e.ToDate.LocalDateTime, TimeZone);

            DateTime now = System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(DateTime.Now, TimeZone);

            //clear time component 
            now = new DateTime(now.Year, now.Month, now.Day);

            DayOfWeek day = (DayOfWeek)Enum.Parse(typeof(DayOfWeek), b.Day.SelectedValue);

            int nextWeekDaysAdjustment = (int) day - (int)now.DayOfWeek;

            if (nextWeekDaysAdjustment < 0)
            {
                nextWeekDaysAdjustment+=7;
            }

            DateTime adjustedStartTime = startTime.AddDays(nextWeekDaysAdjustment);
            adjustedStartTime = now.AddTicks(adjustedStartTime.Ticks);

            //SoonestOccurrence is a field added in a partical class for CalendarEvent entity
            e.SoonestOccurrence = adjustedStartTime;

}

The problem is that I can’t do this sorting in memory because I need to be able to page this query and page it joined by another data set returned by NearestAccounts() function so I’m stuck.

Thank you for your help in advance.

Update: I’ll need to pass in Timezone ID or TimeZone Offset to adjust GetDate() for calculcations as well as all starttimes are stored in UTC.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T16:53:01+00:00Added an answer on May 21, 2026 at 4:53 pm

    I’d suggest you start by creating a scalar user defined function that takes your from/to offsets and repetition flags and returns the date of the next repetition.

    Once you can calculate that value, the order by will be a lot simpler:

    SELECT
      CalendarEventID,
      dbo.GetLatestDate(
        FromDate, ToDate, Monday, Tuesday,
        Wednesday, Thursday, Friday, Saturday, Sunday, 
        EveryNWeeks, EndAfterNOccurences) AS LatestDate
    FROM CalendarEvents
    ORDER BY 2
    

    If you’re using SQL 2005 or later and you’re more comfortable in c#, then you could even go for a CLR scalar function rather than TSQL.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an XML structure like the following: <tables> <table name=tableName1> <row ID=34 col1=data
I have a table emp with following structure and data: name dept salary -----
I have the following data structure (a list of lists) [ ['4', '21', '1',
I have something like the following data structure: Category StartDateTime EndDateTime =============================================== 1 12/1/2009
I have an odd linq subquery issue. Given the following data structure: Parents Children
I have the following casting problem when my data structure sSpecificData contains a field
I have following structure with example data: id season_id title 1 1 Intro 2
If I have a requirement to create a data structure that has the following
I have the following directory structure: +-archive +-a +-data.txt +-b +-data.txt +-incoming +-a +-data.txt
Let's say we have a solution with the following structure: Project.DAL - Data access

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.