How do I reset printer statistics so that printer pooling works correctly?
- 02 Apr 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
How do I reset printer statistics so that printer pooling works correctly?
- Updated on 02 Apr 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
My printer statistics need to be reset so that printer pooling works correctly, as one printer has a larger volume.
How can I reset printer statistics?
You can use the following SQL procedure to update the resource_usages table:
Open SQL Query Analyzer or OSQL.
Log on to SQL and switch to the Pharos Database.
Run the following query replacing the <insert printer name here> with the printer name in the Pharos Administrator:
update resource_usages
set resource_usages.num_jobs = 0, resource_usages.num_units = 0, resource_usages.num_sheets = 0
where ref_type = 'D' and ref_id = (select device_id from devices where device = '<insert printer name here>')
Execute the query.
Restart the Print Server.
Was this article helpful?