In CF, I once had a problem like what you saw. I had CF on 1 server and sql 2008 r2 on another server. I would see CF errors, as you posted below. To track this to a network error, I wrote something like this:
1) created down.bat
tracert serverip
2) Then I put <cftry><cfcatch> around the request.
When the request generated an error, I would execute
<cfexecute name="C:\path\to\down.bat" variable="log" timeout="60" /> <cfmail to="ME" from="Server" subject="SQL DOWN"> Server Debugging Info: ------------------------------------------------------------ #now()# #cfcatch.Detail# #cfcatch.Message# #log# </cfmail> </cfexecute>
This helped me fix the situation, which ended up being hardware in the data center.
steve
source share