This is a nice tool.It should also include the help for using the LogParser Lizard application along with the help for LogParser2.2.
I have a question :If i have to pull deatils from a IIS log which in a different location(other than in the default location c:\windows\system\32\LogFiles\...) how can provide this in my query .
Eg:
SELECT Date
, QUANTIZE(time,300) AS [timeUTC] -- Group in 5 minute intervals
, SUM(CASE sc-status WHEN 200 THEN 1 ELSE 0 END) AS [S200] -- Count Successful hits
, SUM(CASE sc-status WHEN 500 THEN 1 ELSE 0 END) AS [S500] -- Count Server Errors hits
, AVG(time-taken) AS [AvgTime] -- Calculate the average response/processing time
FROM %LogFiles%
WHERE cs-uri-stem = '/sdccommon/lachat/poll/check.asp' -- The Chat Polling Page
GROUP BY Date
, QUANTIZE(time, 300)
ORDER BY QUANTIZE(time, 300)