recently I noticed one interesting issue in production server. We have 1 app server IIS asp .net framework and 1 sql server 2008 installed DB server.
During peak time when I try to telnet my db server on 1433 its keep getting failed but sometimes its get connected. Both these servers are blade server and are in same chassis. No network firewall is in between all the two servers.
Also in application logs its shows error like
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote ... Provider, error: 40 - Could not open a connection to SQL Server)
I checked number of connection on my db using command
SELECT COUNT(dbid) as TotalConnections
FROM sys.sysprocesses
WHERE
dbid > 0
its approximately to 140-150 connections we have multiple databases (~100) on it.
I will appreciate if any body can help me in troubleshooting this issue.