What is “Audit Logout” in SQL Server Profiler?

后端 未结 4 2041
失恋的感觉
失恋的感觉 2020-12-24 04:18

I\'m running a data import (using C#/Linq), and naturally I\'m trying to optimize my queries as much as possible. To this end I\'m running a trace on the DB using SQL Serve

4条回答
  •  一生所求
    2020-12-24 04:50

    Login/Logout events are related to the setting up / tearing down. IIRC the time is the 'was logged in for time' as opposed to a processing duration as with other log events.

    In general, one hides these events unless you suspect there's an issue with connection pool management etc.

    The raw times for the batches should be sufficient to diagnose the time the actual activity is taking including the impact of any transactions etc.

提交回复
热议问题