Hi Guys,
The problem in the query with the POST is that it needs to be in single quotes in the query;
SELECT TO_LOCALTIME(QUANTIZE(TO_TIMESTAMP(date, time),3600)),
COUNT(*) AS Error_Frequency FROM c:\documents\logfiles\ex080701.log
WHERE sc-status >= 500 AND cs-method = 'POST'
GROUP BY TO_LOCALTIME(QUANTIZE(TO_TIMESTAMP(date, time),3600))
ORDER BY TO_LOCALTIME(QUANTIZE(TO_TIMESTAMP(date, time),3600)) ASC
Cheers, Dave