Home » mssql » What timezone is MS SQL Server?

What timezone is MS SQL Server?

The simple answer is you have to calculate it. This can be done quite easily by using the following sql. This will actually give you offset from UTC (GMT), and not the user friendly name of the timezone. select DATEDIFF(hh, GetUtcDate(), GetDate())


http://justgeeks.blogspot.com/2008/08/what-timezone-is-ms-sql-server.html

Leave a comment