| fiogf49gjkf0d Hi,
 You're absolutely right. Whilst it's not stopped anything from working, it's not changed anything either. I think it totally ignores the Network Library setting. I have seen no increase in the number of Shared Memory connections. It's odd that I have seen an increase in performance when logging in though, so I'm going to leave the setting there even if it's just a placebo for me
  
 I raised default packet size to 8192 a little while back in both the connection manager, and at the SQL Server settings. This did increase performance, but not as much as I'd hoped. Is 8192 optimal? What is a little odd is that most connections coming in over TCP/IP only seem to connect at 8000 (see below), but I'm not complaining. I'm going to find out where the rogue 4096's are coming from as well.
 
 
 
 SELECT local_net_address,
 client_net_address,
 net_packet_size,
 net_transport,
 count(session_id) as connection_count
 FROM
 sys.dm_exec_connections
 group by
 local_net_address,
 client_net_address,
 net_packet_size,
 net_transport
 order by
 count(session_id) desc
 
   
   
 local_net_address client_net_address net_packet_size net_transport connection_count
 
 172.16.3.254 172.16.3.244 8000 TCP 22 
 172.16.3.254 172.16.3.160 8000 TCP 16 
 172.16.3.254 172.16.2.238 8000 TCP 9 
 NULL <local machine> 4096 Shared memory 7 
 NULL <local machine> 8000 Shared memory 7 
 NULL <local machine> 8192 Shared memory 5 
 172.16.3.254 172.16.3.252 8000 TCP 5 
 172.16.3.254 172.16.2.121 8000 TCP 4 
 172.16.3.254 172.16.2.92 8000 TCP 4 
 172.16.3.254 172.16.2.246 8000 TCP 3 
 172.16.3.254 172.16.2.66 8000 TCP 3 
 172.16.3.254 172.16.2.72 8000 TCP 3 
 172.16.3.254 172.16.2.78 8000 TCP 3 
 172.16.3.254 172.16.2.222 8000 TCP 3 
 172.16.3.254 172.16.2.230 8000 TCP 3 
 172.16.3.254 172.16.2.233 8000 TCP 3 
 172.16.3.254 172.16.2.235 8000 TCP 3 
 172.16.3.254 172.16.3.252 8208 Session 2 
 172.16.3.254 172.16.3.254 4096 TCP 2 
 172.16.3.254 172.16.2.235 4096 TCP 2 
 172.16.3.254 172.16.2.102 8000 TCP 2 
 172.16.3.254 172.16.2.93 8000 TCP 2 
 172.16.3.254 172.16.3.155 8208 Session 1 
 172.16.3.254 172.16.3.155 8208 TCP 1 
 172.16.3.254 172.16.3.252 8208 TCP 1 
 172.16.3.254 172.16.3.252 4096 TCP 1 
   
   |