1.下载log parser
https://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=24659
2.进入安装目录后:执行导入命令,直接导入到selserver分析
cd C:\Program Files (x86)\Log Parser 2.2
LogParser "SELECT * FROM 'C:\Users\8337\Desktop\W3SVC1\u_ex161229.log' to WebLog" -i:IISW3C -o:SQL -oConnString:"Driver={SQL Server};server=.;database=database;Integrated Security=SSPI" -createtable:ON
执行完了会显示以下信息
执行完再到数据库中去写sql语句 查询日志,对具体的问题进行分析。
参考语句:
查询均耗时长最长的记录
select csuristem,count(*) [调用次数],sum(timetaken)/1000/60 [总共消耗时间(单位分钟)],avg(timetaken) [均耗时(单位毫秒)] from WebLog group by csuristem
order by avg(timetaken) desc