Get daylight savings time


/ Published in: SQL
Save to your folder(s)

Many of us have come across cases where we need to convert a time (such as UTC) to local time, but what about those parts of the world where daylight savings time is observed?



This function will return the daylight savings date/time for a given year in accordance with historical records: http://www.energy.ca.gov/daylightsaving.html#chart



This way, no lookup tables are needed. All you have to know is what timezone you are converting from and to, because as long as you have the date when daylight savings begins/ends, then it should be fairly easy to write some case logic to convert the date. This script also contains an example of this function's use by converting UTC to PST.



Caveat: The function can return undesirable results if the SET DATEFIRST statement is set to anything other than Sunday.

URL: http://www.sqlservercentral.com/scripts/function/70984/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.