Miscellaneous SQL Queries

Miscellaneous SQL Queries
This commit is contained in:
Zack T
2019-03-07 22:22:40 -07:00
parent e1cd3eaa88
commit 1527dc7bd8

View File

@@ -0,0 +1,13 @@
# 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