I'm looking for an efficient SQL Server function (in my case 2005) to convert a unix time value into a SQL Server datetime, using local time (particularly taking account of summertime adjustments - i.e not just adding 01/01/1970 in seconds)

link|improve this question

Please use "SQL Server" to refer to the product and sql-server in the tag. Avoids confusion with "MySql", and there's no such thing as MSSQL. – John Saunders Jul 24 '09 at 12:15
There may be no such product, technically, but it's a very commonly used abreviation and you're swimming against the tide there. A search on Google returns nine and a half million hits, of which the first one is the Microsoft sql server homepage – Cruachan Jul 24 '09 at 12:27
feedback

1 Answer

up vote 1 down vote accepted
SELECT DATEADD(second, @ts, {d '1970-01-01'}) as MSSQLdatetime

After you have the date, you can now do dateadd on the date depending on the DST state for the returned date. To check for DST you need some form of function, sample:

CREATE function [dbo].[fn_GetDaylightSavingsTimeStart]
(@Year varchar(4))
RETURNS smalldatetime
as
begin
 declare @DTSStartWeek smalldatetime, @DTSEndWeek smalldatetime
 set @DTSStartWeek = '03/01/' + convert(varchar,@Year)
 return case datepart(dw,@DTSStartWeek)
 when 1 then
  dateadd(hour,170,@DTSStartWeek)
 when 2 then
  dateadd(hour,314,@DTSStartWeek)
 when 3 then
  dateadd(hour,290,@DTSStartWeek)
 when 4 then
  dateadd(hour,266,@DTSStartWeek)
 when 5 then
  dateadd(hour,242,@DTSStartWeek)
 when 6 then
  dateadd(hour,218,@DTSStartWeek)
 when 7 then
  dateadd(hour,194,@DTSStartWeek)
 end
end

You need a simular function to find when DST ends, take a look at this site for more info: http://www.mssqltips.com/tip.asp?tip=1372

link|improve this answer
Local time, this doesn;t take account of summertime adjustments – Cruachan Jul 24 '09 at 12:08
I have edited the answer to include a sample function that will give you info about DST and when it starts. You can then use a CASE in your SQL statement to add the required hours to the output column. – Espo Jul 24 '09 at 12:28
feedback

Your Answer

 
or
required, but never shown

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