We have a new SQL 2014 machine that is experiencing relatively large numbers of error, where connections are apparently timing out to the database. I used the following query (I believe originally by Jonathan Kehayias) to check out the ring buffers.
SQL
WITHconnectivity_ring_bufferas(SELECTrecord.value('(Record/@id)[1]','int')asid,record.value('(Record/@type)[1]','varchar(50)')astype,record.value('(Record/ConnectivityTraceRecord/RecordType)[1]','varchar(50)')asRecordType,record.value('(Record/ConnectivityTraceRecord/RecordSource)[1]','varchar(50)')asRecordSource,record.value('(Record/ConnectivityTraceRecord/Spid)[1]','int')asSpid,record.value('(Record/ConnectivityTraceRecord/SniConnectionId)[1]','uniqueidentifier')asSniConnectionId,record.value('(Record/ConnectivityTraceRecord/SniProvider)[1]','int')as...