HowTo explain db-entries for 'date'

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • 881822
    Senior Member
    • Aug 2008
    • 124

    #1

    HowTo explain db-entries for 'date'

    Hello,

    for analyzing purposes I want to retrace some DB-entries. My problem is es explanation of date-formats. For example, in the table 'prg_contacts' I've found the value

    '1263938752928' for 'creating_date'

    and

    '1263938752928' for 'changing_date'

    To witch real date conform these values to? How can I convert the db-dates?
    Viele Grüße
    Rene

    OS: Ubuntu Server amd64 20.4 LTS
    JRE: openjdk-8-jre, Maria-DB, Apache 2.4, Dovecot
    OX-Server backend: OXSE latest
    OX-frontend: OX appsuite latest
  • Martin Heiland
    Open-Xchange Quality Assurance
    • Feb 2007
    • 3695

    #2
    Hi Rene,

    those are 64bit signed Long values of UNIX Timestamps that we use through the whole groupware. You can cut off the last 3 digits and calculate the "real" time based on the unix timestamp.
    Code:
    mbraun@mbraun:~$ date -ud @1263938752
    Tue Jan 19 22:05:52 UTC 2010
    Greetings

    Comment

    Working...
    X