I am assuming this is just one print server?
select
substr( TO_STRING( TimeWritten, 'MM-dd-yyyy' ), 0, 10 ) As Date,
extract_token(Strings,2,'|') As SSID,
extract_token(Strings,3,'|') As PrinterName,
extract_token(Strings,5,'|') As Size,
extract_token(Strings,6,'|') As PageCount,
extract_token(Strings,1,'|') As DocumentPrinted
into PrintAudit.csv
from \\printserver\system
where (EventID = 10)
and (SourceName = 'Print')
--change date range if you need
and (TimeGenerated > to_localtime( sub( system_timestamp(), timestamp('0000-01-31', 'yyyy-MM-dd') ) ))