标签: tabular-data-stream

如何将 client_version 值(来自 sys.dm_exec_sessions)映射到 TDS 版本?

来自 Microsoft 的sys.dm_exec_sessions SQL Server 文档

client_interface_name
Name of library/driver being used by the client to communicate with the server.
datatype: nvarchar(32)

client_version
TDS protocol version of the interface that is used by the client to connect to the server.
datatype: int
Run Code Online (Sandbox Code Playgroud)

来自微软的TDS(表格数据流)协议消息产品行为文档

TDSVersion
The highest TDS version being used by the client.
The client sends a standard LOGIN7 message to the server to discover the server's highest TDS version.
datatype: binary
Run Code Online (Sandbox Code Playgroud)

Ben Gribaudo发布了部分值图,并表明 …

sql-server dm-exec-sessions tabular-data-stream

5
推荐指数
1
解决办法
261
查看次数