I'm currently using SQL 2000 (it's a vendor server - don't ask...), and I'm wondering if there's a way to detect the connection protocol of connected clients. For SQL 2005+, I use:
select net_transport from sys.dm_exec_connections
where session_id = @@spid
But SQL2000 lacks this dynamic view. Anybody know the equivalent function on SQL2000?