About 892,000 results
Open links in new tab
  1. Convert Date/Time for given Timezone - java - Stack Overflow

    Oct 6, 2011 · I want to convert this GMT time stamp to GMT+13: 2011-10-06 03:35:05 I have tried about 100 different combinations of DateFormat, TimeZone, Date, GregorianCalendar etc. to try to do this …

  2. How to translate between Windows and IANA time zones?

    Current Status: Starting with .NET 6, both forms of time zones are supported on any platform that has both time zone data and ICU installed, which is most installations of Windows, Linux, and MacOS. …

  3. Time zone conversion in SQL query - Stack Overflow

    Select current_timestamp, current_timestamp at time zone 'Australia/Sydney' from dual; Where Australia/Sydney is the name of your timezone in which you want to convert your time.

  4. datetime - Python Timezone conversion - Stack Overflow

    Jun 12, 2012 · Time conversion To convert a time in one timezone to another timezone in Python, you could use datetime.astimezone (): so, below code is to convert the local time to other time zone. …

  5. sql - Timezone conversion in PLSQL - Stack Overflow

    Nov 5, 2014 · I need to convert the sysdate and time to a particular timezone like EST. I can't assume my current time zone. How to convert this in plsql? Please help me.

  6. sql - Time zone conversion between UTC and local time + possibly ...

    Apr 4, 2021 · I'm struggling to deal with time zone and daylight saving when querying SAP HANA. The datetime stamp is in the form of NVARCHAR, eg 20210304132500 YYYYMMDDHHMISS in UTC, …

  7. Timezone conversion in a Google Sheets with DST (Daylight savings)

    Explanation To account for daylight saving time zones, the input argument for the value to be converted should include the date, not just the time of day. You could set a default date and time zone to build …

  8. Convert date to another timezone in JavaScript - Stack Overflow

    Apr 10, 2012 · Both of these lines returns a date in the local browser time zone, and doesn't answer the question on how to convert to another time zone with daylight savings time.

  9. Converting Between Timezones in Postgres - Stack Overflow

    Jan 3, 2018 · An input value that has an explicit time zone specified is converted to UTC using the appropriate offset for that time zone. If no time zone is stated in the input string, then it is assumed to …

  10. sql server - Convert datetime value from one timezone to UTC …

    Sep 27, 2016 · SELECT (getdate() at time zone 'Central Europe Standard Time') AT TIME ZONE 'UTC' The first AT TIMEZONE returns a datetimeoffset with a +2:00 offset and the second converts it to …