vote up 1 vote down star

We're using an old application that stores dates in C / Unix format. C time is basically the number of seconds since Jan 1st, 1970. The dates are stored as an integer in a SQL Server database. I am writing a view for a report that uses these dates.

So far, I'm converting from the UNIX time to a native datetime with:

DateAdd(s,3600+unix_time,'1/1/1970')

The 3600 is to convert from UTC to our local GMT+1 timezone. This is accurate in the winter, but in the summer it's one hour off due to daylight savings time.

Is there a built-in way to convert from UTC to local time in SQL Server?

flag

1 Answer

vote up 3 vote down check

Instead of 3600, you'll want to do DateDiff(s, getutcdate(), getdate())+unix_time, which will give you the correct offset from the UTC time.

Cheers,
Eric

link|flag
Thanks! Had to change the order (getdateutc() first) but after that it works fine. – Andomar Apr 28 at 11:56
Fantastic. I fixed the code in my post. It's a little too early for me to be getting syntax right here in my time zone :) – Eric Apr 28 at 12:05

Your Answer

Get an OpenID
or

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