Files
MacAdmin/Jamf Pro/Reporting/Database Maintenance and SQL Queries/Query_Miscellaneous.sql
Zack T e916af40e2 Organizing Files
Organizing Files
2019-03-07 22:23:49 -07:00

14 lines
474 B
SQL

# Queries on Miscellaneous Configurations
# Most of these should be working, but some may still be a work in progress.
# These are formatted for readability, just fyi.
##################################################
## Printers
# Unused Printers
select distinct printers.printer_id, printers.display_name
from printers
where printers.printer_id not in ( select printer_id from policy_printers );
# Another Query to check configuration profiles would likely be useful