About 45,200,000 results
Open links in new tab
  1. What is the difference between UTC and GMT? - Stack Overflow

    Feb 23, 2018 · UTC, which stands for Coordinated Universal Time in English, is defined by atomic clocks, but is otherwise the same. In UTC a second always has the same length. Leap seconds are …

  2. SQL Server - Convert date field to UTC - Stack Overflow

    Apr 23, 2010 · I have recently updated my system to record date/times as UTC as previously they were storing as local time. I now need to convert all the local stored date/times to UTC. I was wondering if …

  3. Storing DateTime (UTC) vs. storing DateTimeOffset - Stack Overflow

    I usually have an "interceptor" that right before reading/writing from/to the database does DateTime conversion (from UTC to local time, and from local time to UTC), so I can use DateTime.Now (

  4. datetime - How to get UTC time in Python? - Stack Overflow

    Apr 11, 2013 · datetime.now(timezone.utc) datetime.now(timezone.utc).timestamp() * 1000 # POSIX timestamp in milliseconds For your purposes when you need to calculate an amount of time spent …

  5. Using current time in UTC as default value in PostgreSQL

    May 17, 2013 · I have a column of the TIMESTAMP WITHOUT TIME ZONE type and would like to have that default to the current time in UTC. Getting the current time in UTC is easy: postgres=# select …

  6. How to initialize a JavaScript Date to a particular time zone

    Background JavaScript's Date object tracks time in UTC internally, but typically accepts input and produces output in the local time of the computer it's running on. It has very few facilities for working …

  7. Oracle SQL: converting timestamp to UTC - Stack Overflow

    Mar 27, 2014 · Starting from Oracle 19c, a new function is introduced which is TO_UTC_TIMESTAMP_TZ The SQL function TO_UTC_TIMESTAMP_TZ takes an ISO 8601 date …

  8. How to get UTC value for SYSDATE on Oracle - Stack Overflow

    Probably a classic... Would you know a easy trick to retrieve an UTC value of SYSDATE on Oracle (best would be getting something working on the 8th version as well). For now I've custom function :(

  9. c# - Why can't DateTime.Parse parse UTC date - Stack Overflow

    As other answers point out, the UTC date string with Z designator would indeed be successfully parsed, but it would also be converted to local time, i.e. it returns DateTime with a Kind of Local and adjusted …

  10. date - Is it always a good idea to store time in UTC or is this the ...

    Jul 18, 2012 · Generally, it is the best practice to store time in UTC and as mentioned in here and here. Suppose there is a re-occurring event let's say end time which is always at the same local time let's …