我正在使用EF在一个包含多个应用和服务的网站上工作,数据库正在抛出以下错误:
The server will drop the connection, because the client driver has sent multiple
requests while the session is in single-user mode. This error occurs when a client
sends a request to reset the connection while there are batches still running in
the session, or when the client sends a request while the session is resetting
a connection. Please contact the client driver vendor.
因此,我搜索了每个应用和服务的连接字符串,以确保启用了MultipleActiveResultSets,并启用了所有连接。
所以运行以下查询
SELECT
c.session_id, c.net_transport,
s.host_name,
s.login_name
, c.connect_time
FROM sys.dm_exec_connections AS c
JOIN sys.dm_exec_sessions AS s
ON c.session_id = s.session_id
ORDER BY login_name
并且看到我为同一个Login_name(相同的应用程序)有多个连接,但是有些连接有TCP net_transport而其他连接有“session”,对于相同的login_name(相同的连接字符串)
什么可能导致某些连接使用TCP而不是Session?
修改 此查询返回例如:
session_id net_transport host_name login_name connect_time
196 TCP P3417722 UserName 2015-01-05 08:57:58.437
196 SESSION P3417722 UserName 2015-01-05 08:57:58.437
.
.
.
请注意,两者都具有相同的session_id和相同的connect_time。
这意味着我有两个具有相同用户名的连接但是一个启用了“Mars”而另一个没有?