vote up 0 vote down star

I have quite a few situations where I have database structures similar to:

TABLE Event (EventID INT PrimaryKey, Start DATETIME, Finish DATETIME); and TABLE EventTask (EventTaskID INT PrimaryKey, EventID INT ForeignKey, TaskStart DATETIME, TaskFinish DATETIME)

1 to many relationship between Events and EventTasks, etc.

When the dates in the Event table are changed, the EventTask dates need to be changed as well - not difficult with supplied date functions, but date manipulation is always just a bit tricky.

I was wondering if it might be better to replace the TaskStart DATETIME and TaskFinish DATETIME with two INTS: one for Event.Start offset (mins different to Event.Start) and a Duration.

This way date updates become much more robust, as only a single row needs an update.

(I stipulate that this only applies where the EventTask dates are absolutely dependant on the Event dates)

flag

2 Answers

vote up 1 vote down check

Yes, that sounds entirely reasonable to me. The main downside would be that in order to find the actual times of EventTasks, you have to perform calculations. That will slow down anything returning the times, and in particular will hurt queries involving EventTask times in the filter - e.g. "find me all tasks which occur between times X and Y." Those could previously have used an index, but won't be able to any more.

link|flag
Good point re querying the EventTask times Jon. The 'original' design would need a view to recreate it anyway; I wonder if you could apply an index to this view (as per SQLS2008) ? – realcals Sep 11 at 6:31
@realcals: Possibly. I've no idea how efficient it would be. Database engineers are frighteningly clever people sometimes :) Anyway, something to test before you get too far down the road, I'd say. – Jon Skeet Sep 11 at 7:02
vote up 0 vote down

If you are using SQL 2008 you could use datetimeoffset data type.

If you would like to get "directly" the data, without too much hassle you could use computed columns, but you might not be able to create indexes (or make them store the result) on them if the result is non deterministic.

Your structure would be like this:

TABLE [Event] (
    EventID INT PrimaryKey, 
    Start DATETIME, 
    Finish DATETIME)

TABLE [EventTask](
    EventTaskID INT PrimaryKey, 
    EventID INT ForeignKey, 
    TaskStart DATETIMEOFFSET, 
    TaskFinish DATETIMEOFFSET,
    EventTaskStart as [getStartDateByEvent](eventId, TaskStart) <PERSISTED>,
    EventTaskStop as [getStopDateByEvent](eventId, TaskStart) <PERSISTED>,
    )

FUNCTION [getStartDateByEvent](eventId, TaskStart) as DATETIME
BEGIN
    SELECT [EVENT].start + TaskStart from [EVENT] WHERE [EVENT].EVENTID = eventID
END

FUNCTION [getStartDateByEvent](eventId, TaskStop) as DATETIME
BEGIN
    SELECT [EVENT].[finish] + TaskStop from [EVENT] WHERE [EVENT].EVENTID = eventID
END
link|flag
I don't see how that helps - it doesn't let you specify an offset from a field in a different table, does it? – Jon Skeet Sep 11 at 7:01
you still have to compute the value. You cannot use computed columns that reference directly another table, but you can do it with user defined functions – Bogdan Maxim Sep 11 at 7:04
Here is an example of computed columns with datetime result: stackoverflow.com/questions/246666/… – Bogdan Maxim Sep 11 at 7:07
The functions need to be declared with "SCHEMABINDING" – Bogdan Maxim Sep 11 at 7:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.