0
Web服務器環境:Windows 2008 R2我可以說這是一個連接泄漏?
數據庫服務器環境:SQL Server 2008中
背景:我想用SQL事件探查器來跟蹤該連接導致連接泄漏。
SQL Server Profiler中的事件我用:
- 審覈登錄(列:EventSubClass,事件類,EventSequence,SPID)
- 審覈註銷(列:EventSubClass,事件類,EventSequence,SPID)
- 中國:完整(列:TextData,EventSequence,SPID)
我發現了一個奇怪的記錄記錄,我想這是連接泄漏,但不是很確定,記錄是:
SPID 65,
When Audit Login, EventSubClass is 2-pooled (meaning it is pooled connection) and EventSequence is 69354
When Audit Logout, EventSubClass is 1-non pooled (meaning it is non-pooled connection) and EventSequence is 69848 (from 69354 to 69848 meaning there are some other event logs)
我可以說這個連接是漏水的嗎?
預先感謝您。