Parsing Extended Events xml_deadlock_report

Posted by Michael Zilberstein on SQL Blog See other posts from SQL Blog or by Michael Zilberstein
Published on Mon, 10 May 2010 01:31:45 GMT Indexed on 2010/05/10 1:39 UTC
Read the original article Hit count: 761

Filed under:
|
Jonathan Kehayias and Paul Randall posted more than a year ago great articles on how to monitor historical deadlocks using Extended Events system_health default trace. Both tried to fix on the fly the bug in xml output that caused failures in xml validation. Today I've found out that their version isn't bulletproof either. So here is the fixed one: SELECT CAST ( xest.target_data as XML ) xml_data , * INTO #ring_buffer_data FROM     sys.dm_xe_session_targets xest    INNER...(read more)

© SQL Blog or respective owner

Related posts about ExtendedEvents

  • Parsing Extended Events xml_deadlock_report

    as seen on SQL Blog - Search for 'SQL Blog'
    Jonathan Kehayias and Paul Randall posted more than a year ago great articles on how to monitor historical deadlocks using Extended Events system_health default trace. Both tried to fix on the fly the bug in xml output that caused failures in xml validation. Today I've found out that their version… >>> More

Related posts about sql2008