About 16,500,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. Oracle SQL: converting timestamp to UTC - Stack Overflow

    Mar 27, 2014 · I have a simple select query such as below but I noticed I am getting back the regional times. How can I convert to UTC in my select statment? select myTimeStamp, MyName, MyBranch …

  4. 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 …

  5. 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 …

  6. 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 …

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

    Jan 1, 2008 · 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 …

  8. Converting datetime.date to UTC timestamp in Python

    Jan 8, 2012 · I am dealing with dates in Python and I need to convert them to UTC timestamps to be used inside Javascript. The following code does not work: >>> d = datetime.date (2011,01,01) >>>

  9. Creating a DateTime object with a specific UTC DateTime in PowerShell

    Get-Date converts the given UTC time to local time and stores it as a datetime object with Kind set to Local. It does store the correct physical point in time, but it is a local time and will be printed in local …

  10. c# - Entity Framework DateTime and UTC - Stack Overflow

    Is it possible to have Entity Framework (I am using the Code First Approach with CTP5 currently) store all DateTime values as UTC in the database? Or is there maybe a way to specify it in the mapp...