time_machine_destinations

Locations backed up to using Time Machine.

Platform support

Please be aware that some queries can only be run against certain platforms. Below is a list of the supported platforms that this query supports. Zercurity will automatically pause queries from running if errors are detected. Running a query against an unsupported platform will result in the following error: no such table: time_machine_destinations

  • Mac OSX

Table schema

Name Type Description
alias TEXT Human readable name of drive
destination_id TEXT Time Machine destination ID
consistency_scan_date INTEGER Consistency scan date
root_volume_uuid TEXT Root UUID of backup volume
bytes_available INTEGER Bytes available on volume
bytes_used INTEGER Bytes used on volume
encryption TEXT Last known encrypted state

Query examples

select alias, backup_date, td.destination_id, root_volume_uuid, encryption from time_machine_backups tb join time_machine_destinations td on (td.destination_id=tb.destination_id);