About 19,300,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 …

  2. You are trying to merge on datetime64[ns, UTC] and …

    Oct 5, 2022 · Essentially I have a script that is running through a database and collecting information on different assets that have datetime64 [ns, UTC] dtypes. This script can return a …

  3. How to force Power BI service to use Local timezone

    Apr 9, 2020 · Both approaches work OK in Power BI desktop report, However once I published to Power BI service and after several refreshes (initially it was NZ time), the time turn back to …

  4. sql - TSQL DATETIME ISO 8601 - Stack Overflow

    Jun 9, 2015 · I have been given a specification that requires the ISO 8601 date format, does any one know the conversion codes or a way of getting these 2 examples: ISO 8601 Extended …

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

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

    This is approach passes UTC values into the Date constructor where local time values are expected. The resulting Date object now represents a completely different point in time. It is …

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

    Apr 11, 2013 · For Python 3, use datetime.now(timezone.utc) to get a timezone-aware datetime, and use .timestamp() to convert it to a timestamp. from datetime import datetime, timezone …

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

  9. postgresql - postgres default timezone - Stack Overflow

    Jul 12, 2011 · SET TIME ZONE 'UTC'; The doc explains the difference: SET TIME ZONE extends syntax defined in the SQL standard. The standard allows only numeric time zone offsets while …

  10. Understanding specific UTC time format YYYY-MM …

    Jun 1, 2016 · Assume a program running in (British Standard Time)BST generates a date time value for current time in UTC (YYYY-MM-DDTHH:MM:SS.SSSZ) format. Also assume current …