SQL Server audit logout creates huge number of reads

試著忘記壹切 提交于 2019-11-27 03:46:02

问题


I'm using SQL Server Profiler to figure out what process are consuming SQL process and I found that the event class Audit Logout is causing a huge number of reads and consume cpu process.

Is it normal? Or do I have something wrong in the SQL Server configuration?


回答1:


The audit logout event aggregates a lot of its values like reads/writes, connection times, etc. from the time the connection was opened.

See http://msdn.microsoft.com/en-us/library/ms175827.aspx - the definition for your specific question added here:

Reads Number of logical read I/Os issued by the user during the connection.

So basically, the number you are seeing is not for the audit event itself, it is for all actions done by the connection that is logging out.



来源:https://stackoverflow.com/questions/13049452/sql-server-audit-logout-creates-huge-number-of-reads

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!