문제

I'm parsing a log file (IIS file) using logparser and works great but when I open generated file (csv) its first column is logfile name e.g. c:\temp\in_290414.log which is the input file.

How can I avoid it? Thanks.

도움이 되었습니까?

해결책

Just be explicit in your SELECT clause with the fields you want out of the IIS log:

SELECT time, date, url, etc INTO output.csv FROM ...
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top