I have some code that returns the a date of the last SCCM heartbeat on a machine. It contains a value that I can not decypher. I was hoping someone might be able to tell me what it is. What is [red]157258080[/red]?
sys_data.lastlogon0 is the number of nanoseconds since Jan, 1, 1900 (I think)
-Geates
sys_data.lastlogon0 is the number of nanoseconds since Jan, 1, 1900 (I think)
Code:
dateadd(n, (sys_data.lastlogon0/600000000) - [red][b]157258080[/b][/red], 0) as 'last heartbeat'
-Geates