up vote 3 down vote favorite
share [g+] share [fb]

We are dealing with an application that needs to handle global time data from different time zones and daylight savings time settings. The idea is to store everything in UTC format internally and only convert back and forth for the localized user interfaces. Does the SQL Server offer any mechanisms for dealing with the translations given a time, a country and a timezone?

This must be a common problem, so I'm surprised google wouldn't turn up anything usable.

Any pointers?

 Sören
link|improve this question

65% accept rate
feedback

6 Answers

You can use GETUTCDATE() function to get UTC datetime Probably you can select difference between GETUTCDATE() and GETDATE() and use this difference to ajust your dates to UTC

But I agree with previous message, that it is much easier to control right datetime in the business layer (in .NET, for example).

link|improve this answer
2  
No! The difference is dependent on the exact date. It depends on daylight-savings. – usr Oct 17 '11 at 14:40
feedback

To add to Rob Farley's answer, here is an excellent write-up of hows/whys for using datetimeoffset datatype instead of datetime.

http://blogs.msdn.com/bartd/archive/2009/03/31/the-death-of-datetime.aspx

link|improve this answer
feedback

SQL 2008 has a type called datetimeoffset. It's really useful for this type of stuff.

http://msdn.microsoft.com/en-us/library/bb630289.aspx

Then you can use the function SWITCHOFFSET to move it from one timezone to another, but still keeping the same UTC value.

http://msdn.microsoft.com/en-us/library/bb677244.aspx

Rob

link|improve this answer
feedback

replace "YOUR_DATE" with your date coulmn:

select dateadd(second,datediff(second,getutcdate(),getdate()),YOUR_DATE)

link|improve this answer
Thanks, this is a good idea but it only works for exactly one timezone - the local machine's. We need it to work for arbitrary timezones though... – BuschnicK Nov 10 '10 at 14:48
clever but yeah, watch out for timezones. – Krip Apr 4 '11 at 13:15
1  
This doesn't account for daylight savings time – Gabriel McAdams Aug 29 '11 at 23:16
1  
No! The difference is dependent on the exact date. It depends on daylight-savings. – usr Oct 17 '11 at 14:40
1  
In my case I just needed the 1 timezone, and this worked great! Thanks. – M Thelen Dec 7 '11 at 15:14
show 1 more comment
feedback

Yes, to some degree as detailed here.
The approach I've used (pre-2008) is to do the conversion in the .NET business logic before inserting into the DB.

link|improve this answer
feedback

While a few of these answers will get you in the ballpark, you cannot do what you're trying to do with arbitrary dates for SqlServer 2005 and earlier because of daylight savings time. Using the difference between the current local and current UTC will give me the offset as it exists today. I have not found a way to determine what the offset would have been for the date in question.

That said, I know that SqlServer 2008 provides some new date functions that may address that issue, but folks using an earlier version need to be aware of the limitations.

Our approach is to persist UTC and perform the conversion on the client side where we have more control over the conversion's accuracy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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