Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
4  
This might be a better fit on dba.stackexchange. – Ed Harper Oct 31 '12 at 8:07

closed as off topic by Ed Harper, Matt Gibson, Pondlife, bobs, bummi Jan 4 at 18:08

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.