I need to be able to identify the local machine's time offset from GMT within an ACCESS query. The SQL Server "GETUTCDATE()" provides that ability using the same query code regardless of whether it is Standard time or Daylight Saving Time.
Does anyone have any suggestions or solutions for the same in ACCESS/JET SQL or VBA ?
Thanks in advance.
WinN
Code:
select datediff(hh, '01/01/1970', getdate()) - datediff(hh, '01/01/1970', getutcdate())
Thanks in advance.
WinN