yuvalapidot
08/16/2018, 7:35 AMSELECT MAX(asl.time) boot_time FROM asl WHERE asl.sender = 'bootlog';
This will select the latest boot time from the Apple System Log data structure.
Any thoughts on this query? will it always work?last
instead of asl
is:
SELECT MAX(last.time) boot_time FROM last WHERE last.type = 2
.
Hopefully last
won't be deprecated anytime soon.
@zwass does this sound reasonable?