Is it possible to get the name of the current time zone, such as "Eastern Standard Time"
or "EST"
in SQL code on SQL Server 2008 R2 ? I know I can determine numeric local time offset by calculating difference between getdate()
and getutcdate()
, but that's not what I need. I simply need TZ name from the underlying operating system.
7305 次