The timestamp is in Unix Epoch time format which is under UTC timezone. |
Database CommandsUsers can refer to the Gateway Databases documentation, and look for sections named Handling Timestamps. We have provided examples of database commands to convert the timestamp format for various database vendors. |
|
Linux CommandsFor Linux users, the "date" command can be handy to provide date conversion. Please refer to the Linux man pages ("man date") for more information. We have used +u and +%s switches as examples below. From Human Readable Date to Epoch$ date -u -d "2018-12-25 12:34:56" From Epoch to Human Readable Date$ date -u -d @1545741296 |
Comments
0 comments
Please sign in to leave a comment.