user2794362
user2794362

Reputation: 9

Cannot update net_transport to TCP in SQL Server

I have SQL Server 2012 installed and I need to update the net-transport type from named pipes to tcp protocol. I do that in the SQL server configuration manager and restart the services. Yet, on running

select connectionproperty('net_transport') as net_transport,
connectionproperty('protocol_type') as pt,
connectionproperty('auth_scheme') as sh,
connectionproperty('local_net_address') as lna,
connectionproperty('local_tcp_port') as tcport,
connectionproperty('client_net_address') as cna
from sys.dm_exec_connections

It gives me net_transport type as named pipe.

Upvotes: 0

Views: 714

Answers (1)

Kannan Kandasamy
Kannan Kandasamy

Reputation: 13969

You can keep tcp/ip only enabled and disable 'named pipes' this will change to tcp/ip

Upvotes: 0

Related Questions