Deadlocks of an Azure Database
If your Azure database is experiencing deadlocks or below error
Transaction (Process ID) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction
then you can see them by executing following query in the master database:
Transaction (Process ID) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction
then you can see them by executing following query in the master database:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH CTE AS ( | |
SELECT CAST(event_data AS XML) AS [target_data_XML] | |
FROM sys.fn_xe_telemetry_blob_target_read_file('dl', null, null, null) | |
) | |
SELECT target_data_XML.value('(/event/@timestamp)[1]', 'DateTime2') AS Timestamp, | |
target_data_XML.query('/event/data[@name=''xml_report'']/value/deadlock') AS deadlock_xml, | |
target_data_XML.query('/event/data[@name=''database_name'']/value').value('(/value)[1]', 'nvarchar(100)') AS db_name | |
FROM CTE |
Comments