{"id":543,"date":"2010-12-21T13:03:00","date_gmt":"2010-12-21T13:03:00","guid":{"rendered":"\/blogs\/jonathan\/post\/An-XEvent-a-Day-(21-of-31)-The-Future-Tracking-Blocking-in-Denali.aspx"},"modified":"2017-04-13T12:18:30","modified_gmt":"2017-04-13T16:18:30","slug":"an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali","status":"publish","type":"post","link":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/","title":{"rendered":"An XEvent a Day (21 of 31) &#8211; The Future &#8211; Tracking Blocking in Denali"},"content":{"rendered":"<p>One of my favorite features that was added to SQL Server 2005 has been the Blocked Process Report trace event which collects an XML report whenever a process is blocked inside of the database engine longer than the user configurable threshold.&#160; I wrote an article about this feature on SQL Server Central&#160; two years ago titled <a href=\"http:\/\/www.sqlservercentral.com\/articles\/Blocking\/64474\/\" target=\"_blank\">Using the Blocked Process Report in SQL Server 2005\/2008<\/a>.&#160; One of the aspects of this feature is that it requires that you either have a SQL Trace running that captures the event, or you configure Event Notifications on the server to capture the event information in a Service Broker Queue, neither of which is overly difficult to accomplish.&#160; In SQL Server Denali CTP1, there is a new Extended Event, sqlserver.blocked_process_report, that makes this even easier to use.&#160; We can now create an Event Session that exists in our SQL Server and is waiting to be started to capture blocked process information as needed.&#160; However, we still have to set the \u2018blocked process threshold\u2019 sp_configure option to set the threshold at which blocked process report information is generated by Database Engine, firing the Event in our Event Session.<\/p>\n<blockquote>\n<pre class=\"code\"><span style=\"color: blue\">CREATE EVENT SESSION <\/span>MonitorBlocking\r\n<span style=\"color: blue\">ON SERVER\r\nADD EVENT <\/span>sqlserver<span style=\"color: gray\">.<\/span>blocked_process_report\r\n<span style=\"color: blue\">ADD TARGET <\/span>package0<span style=\"color: gray\">.<\/span>ring_buffer<span style=\"color: gray\">(<\/span><span style=\"color: blue\">SET <\/span>MAX_MEMORY<span style=\"color: gray\">=<\/span>2048<span style=\"color: gray\">)\r\n<\/span><span style=\"color: blue\">WITH <\/span><span style=\"color: gray\">(<\/span>MAX_DISPATCH_LATENCY <span style=\"color: gray\">= <\/span>5SECONDS<span style=\"color: gray\">)\r\n<\/span><span style=\"color: blue\">GO\r\nALTER EVENT SESSION <\/span>MonitorBlocking\r\n<span style=\"color: blue\">ON SERVER\r\nSTATE<\/span><span style=\"color: gray\">=<\/span>START\r\n<span style=\"color: blue\">GO\r\nEXECUTE <\/span><span style=\"color: maroon\">sp_configure <\/span><span style=\"color: red\">'show advanced options'<\/span><span style=\"color: gray\">, <\/span>1\r\n<span style=\"color: blue\">GO\r\nRECONFIGURE\r\nGO\r\nEXECUTE <\/span><span style=\"color: maroon\">sp_configure <\/span><span style=\"color: red\">'blocked process threshold'<\/span><span style=\"color: gray\">, <\/span>15\r\n<span style=\"color: blue\">GO\r\nRECONFIGURE\r\nGO\r\nEXECUTE <\/span><span style=\"color: maroon\">sp_configure <\/span><span style=\"color: red\">'show advanced options'<\/span><span style=\"color: gray\">, <\/span>0\r\n<span style=\"color: blue\">GO\r\nRECONFIGURE\r\nGO<\/span><\/pre>\n<\/blockquote>\n<p>To test this Event Session, we can open two New Query Windows in SSMS and connect them to our database engine.&#160; Then in one window run the following code:<\/p>\n<blockquote>\n<pre class=\"code\"><span style=\"color: blue\">USE <\/span>[tempdb]\r\n<span style=\"color: blue\">GO\r\nCREATE TABLE <\/span>t1 <span style=\"color: gray\">(<\/span>RowID <span style=\"color: blue\">int identity primary key<\/span><span style=\"color: gray\">)\r\n<\/span><span style=\"color: blue\">GO\r\nBEGIN TRANSACTION\r\nINSERT INTO <\/span>t1 <span style=\"color: blue\">DEFAULT VALUES\r\nWAITFOR DELAY <\/span><span style=\"color: red\">'00:00:30'\r\n<\/span><span style=\"color: blue\">COMMIT<\/span><\/pre>\n<\/blockquote>\n<p>Then in the other window run the following code:<\/p>\n<blockquote>\n<pre class=\"code\"><span style=\"color: blue\">USE <\/span>[tempdb]\r\n<span style=\"color: blue\">GO\r\nSELECT <\/span><span style=\"color: gray\">* <\/span><span style=\"color: blue\">FROM <\/span>t1<\/pre>\n<\/blockquote>\n<p>The first query will block the execution of the second query until it completes, generating our blocked process report in the ring_buffer Target for our Event Session.&#160; To get the information from the ring_buffer target, we can run a quick XQuery to parse the Target (at this point in the series, you should be an XQuery pro):<\/p>\n<blockquote>\n<pre class=\"code\"><span style=\"color: green\">-- Query the XML to get the Target Data\r\n<\/span><span style=\"color: blue\">SELECT \r\n    <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/@name)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'varchar(50)'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span>event_name<span style=\"color: gray\">,\r\n    <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/@package)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'varchar(50)'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span>package_name<span style=\"color: gray\">,\r\n    <\/span><span style=\"color: magenta\">DATEADD<\/span><span style=\"color: gray\">(<\/span>hh<span style=\"color: gray\">, \r\n            <\/span><span style=\"color: magenta\">DATEDIFF<\/span><span style=\"color: gray\">(<\/span>hh<span style=\"color: gray\">, <\/span><span style=\"color: magenta\">GETUTCDATE<\/span><span style=\"color: gray\">(), <\/span><span style=\"color: magenta\">CURRENT_TIMESTAMP<\/span><span style=\"color: gray\">), \r\n            <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/@timestamp)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'datetime2'<\/span><span style=\"color: gray\">)) <\/span><span style=\"color: blue\">AS <\/span>[timestamp]<span style=\"color: gray\">,\r\n    <\/span><span style=\"color: magenta\">ISNULL<\/span><span style=\"color: gray\">(<\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/data[@name=&quot;database_id&quot;]\/value)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'int'<\/span><span style=\"color: gray\">),\r\n            <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/action[@name=&quot;database_id&quot;]\/value)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'int'<\/span><span style=\"color: gray\">)) <\/span><span style=\"color: blue\">as <\/span>[database_id]<span style=\"color: gray\">,\r\n    <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/data[@name=&quot;database_name&quot;]\/value)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'nvarchar(128)'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as <\/span>[database_name]<span style=\"color: gray\">,\r\n    <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/data[@name=&quot;object_id&quot;]\/value)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'int'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as <\/span>[object_id]<span style=\"color: gray\">,\r\n    <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/data[@name=&quot;index_id&quot;]\/value)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'int'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as <\/span>[index_id]<span style=\"color: gray\">,\r\n    <\/span><span style=\"color: magenta\">CAST<\/span><span style=\"color: gray\">(<\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/data[@name=&quot;duration&quot;]\/value)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'bigint'<\/span><span style=\"color: gray\">)\/<\/span>1000000.0 <span style=\"color: blue\">AS decimal<\/span><span style=\"color: gray\">(<\/span>6<span style=\"color: gray\">,<\/span>2<span style=\"color: gray\">)) <\/span><span style=\"color: blue\">as <\/span>[duration_seconds]<span style=\"color: gray\">,\r\n    <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/data[@name=&quot;lock_mode&quot;]\/text)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'nvarchar(10)'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as <\/span>[file_handle]<span style=\"color: gray\">,\r\n    <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/data[@name=&quot;transaction_id&quot;]\/value)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'bigint'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as <\/span>[transaction_id]<span style=\"color: gray\">,\r\n    <\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/data[@name=&quot;resource_owner_type&quot;]\/text)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'nvarchar(10)'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as <\/span>[resource_owner_type]<span style=\"color: gray\">,\r\n    <\/span><span style=\"color: magenta\">CAST<\/span><span style=\"color: gray\">(<\/span>n<span style=\"color: gray\">.<\/span>value<span style=\"color: gray\">(<\/span><span style=\"color: red\">'(event\/data[@name=&quot;blocked_process&quot;]\/value)[1]'<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">'nvarchar(max)'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as XML<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as <\/span>[blocked_process_report]\r\n<span style=\"color: blue\">FROM\r\n<\/span><span style=\"color: gray\">(    <\/span><span style=\"color: blue\">SELECT <\/span>td<span style=\"color: gray\">.<\/span>query<span style=\"color: gray\">(<\/span><span style=\"color: red\">'.'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as <\/span>n\r\n    <span style=\"color: blue\">FROM \r\n    <\/span><span style=\"color: gray\">(\r\n        <\/span><span style=\"color: blue\">SELECT <\/span><span style=\"color: magenta\">CAST<\/span><span style=\"color: gray\">(<\/span>target_data <span style=\"color: blue\">AS XML<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">as <\/span>target_data\r\n        <span style=\"color: blue\">FROM <\/span><span style=\"color: green\">sys<\/span><span style=\"color: gray\">.<\/span><span style=\"color: green\">dm_xe_sessions <\/span><span style=\"color: blue\">AS <\/span>s    \r\n        <span style=\"color: gray\">JOIN <\/span><span style=\"color: green\">sys<\/span><span style=\"color: gray\">.<\/span><span style=\"color: green\">dm_xe_session_targets <\/span><span style=\"color: blue\">AS <\/span>t\r\n            <span style=\"color: blue\">ON <\/span>s<span style=\"color: gray\">.<\/span><span style=\"color: blue\">address <\/span><span style=\"color: gray\">= <\/span>t<span style=\"color: gray\">.<\/span>event_session_address\r\n        <span style=\"color: blue\">WHERE <\/span>s<span style=\"color: gray\">.<\/span>name <span style=\"color: gray\">= <\/span><span style=\"color: red\">'MonitorBlocking'\r\n          <\/span><span style=\"color: gray\">AND <\/span>t<span style=\"color: gray\">.<\/span>target_name <span style=\"color: gray\">= <\/span><span style=\"color: red\">'ring_buffer'\r\n    <\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span>sub\r\n    <span style=\"color: gray\">CROSS APPLY <\/span>target_data<span style=\"color: gray\">.<\/span>nodes<span style=\"color: gray\">(<\/span><span style=\"color: red\">'RingBufferTarget\/event'<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span>q<span style=\"color: gray\">(<\/span>td<span style=\"color: gray\">)\r\n) <\/span><span style=\"color: blue\">as <\/span>tab\r\n<span style=\"color: blue\">GO<\/span><\/pre>\n<\/blockquote>\n<blockquote>\n<p><a href=\"https:\/\/www.SQLskills.com\/blogs\/jonathan\/wp-content\/uploads\/windows-live-writer\/d5bff98342cb\/42a7ffaf\/image.png\" target=\"_blank\"><img decoding=\"async\" style=\"border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px\" title=\"image\" border=\"0\" alt=\"image\" src=\"https:\/\/www.SQLskills.com\/blogs\/jonathan\/wp-content\/uploads\/windows-live-writer\/d5bff98342cb\/41cf99c5\/image_thumb.png\" width=\"644\" height=\"51\" \/><\/a> <\/p>\n<\/blockquote>\n<p>The output of the Event in Extended Events contains some additional information to the blocked process report in XML format including the database_id, object_id, index_id, duration, lock_mode, transaction_id, and resource_owner_type for the blocking resource.&#160; Clicking on the blocked process report XML will open it up in Management Studio as an XML document allowing detailed analysis of the blocking to be performed.<\/p>\n<blockquote>\n<pre class=\"code\"><span style=\"color: blue\">&lt;<\/span><span style=\"color: #a31515\">blocked-process-report<\/span><span style=\"color: blue\">&gt;\r\n  &lt;<\/span><span style=\"color: #a31515\">blocked-process<\/span><span style=\"color: blue\">&gt;\r\n    &lt;<\/span><span style=\"color: #a31515\">process <\/span><span style=\"color: red\">id<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">process2eb8bda8<\/span>&quot; <span style=\"color: red\">taskpriority<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0<\/span>&quot; <span style=\"color: red\">logused<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0<\/span>&quot; <span style=\"color: red\">waitresource<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">KEY: 2:2666130980878942208 (61a06abd401c)<\/span>&quot; \r\n             <span style=\"color: red\">waittime<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">25480<\/span>&quot; <span style=\"color: red\">ownerId<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">12748<\/span>&quot; <span style=\"color: red\">transactionname<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">SELECT<\/span>&quot; <span style=\"color: red\">lasttranstarted<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2010-12-21T18:19:03.263<\/span>&quot; \r\n             <span style=\"color: red\">XDES<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0x2dfb9c10<\/span>&quot; <span style=\"color: red\">lockMode<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">S<\/span>&quot; <span style=\"color: red\">schedulerid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">1<\/span>&quot; <span style=\"color: red\">kpid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2484<\/span>&quot; <span style=\"color: red\">status<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">suspended<\/span>&quot; <span style=\"color: red\">spid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">60<\/span>&quot; <span style=\"color: red\">sbid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0<\/span>&quot; <span style=\"color: red\">ecid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0<\/span>&quot; \r\n             <span style=\"color: red\">priority<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0<\/span>&quot; <span style=\"color: red\">trancount<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0<\/span>&quot; <span style=\"color: red\">lastbatchstarted<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2010-12-21T18:19:03.263<\/span>&quot; \r\n             <span style=\"color: red\">lastbatchcompleted<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2010-12-21T18:19:03.263<\/span>&quot; <span style=\"color: red\">clientapp<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">Microsoft SQL Server Management Studio - Query<\/span>&quot; \r\n             <span style=\"color: red\">hostname<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">WIN-5B9V8JPLP3H<\/span>&quot; <span style=\"color: red\">hostpid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2708<\/span>&quot; <span style=\"color: red\">loginname<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">WIN-5B9V8JPLP3H\\Administrator<\/span>&quot; \r\n             <span style=\"color: red\">isolationlevel<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">read committed (2)<\/span>&quot; <span style=\"color: red\">xactid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">12748<\/span>&quot; <span style=\"color: red\">currentdb<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2<\/span>&quot; <span style=\"color: red\">lockTimeout<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">4294967295<\/span>&quot; \r\n             <span style=\"color: red\">clientoption1<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">671090784<\/span>&quot; <span style=\"color: red\">clientoption2<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">390200<\/span>&quot;<span style=\"color: blue\">&gt;\r\n      &lt;<\/span><span style=\"color: #a31515\">executionStack<\/span><span style=\"color: blue\">&gt;\r\n        &lt;<\/span><span style=\"color: #a31515\">frame <\/span><span style=\"color: red\">line<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">1<\/span>&quot; <span style=\"color: red\">sqlhandle<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0x02000000d9de7b2f4f3a78e40f100bc02a84efbb9f01a84d<\/span>&quot; <span style=\"color: blue\">\/&gt;\r\n      &lt;\/<\/span><span style=\"color: #a31515\">executionStack<\/span><span style=\"color: blue\">&gt;\r\n      &lt;<\/span><span style=\"color: #a31515\">inputbuf<\/span><span style=\"color: blue\">&gt;\r\n<\/span>SELECT * FROM t1   <span style=\"color: blue\">&lt;\/<\/span><span style=\"color: #a31515\">inputbuf<\/span><span style=\"color: blue\">&gt;\r\n    &lt;\/<\/span><span style=\"color: #a31515\">process<\/span><span style=\"color: blue\">&gt;\r\n  &lt;\/<\/span><span style=\"color: #a31515\">blocked-process<\/span><span style=\"color: blue\">&gt;\r\n  &lt;<\/span><span style=\"color: #a31515\">blocking-process<\/span><span style=\"color: blue\">&gt;\r\n    &lt;<\/span><span style=\"color: #a31515\">process <\/span><span style=\"color: red\">status<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">suspended<\/span>&quot; <span style=\"color: red\">waittime<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">27430<\/span>&quot; <span style=\"color: red\">spid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">57<\/span>&quot; <span style=\"color: red\">sbid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0<\/span>&quot; <span style=\"color: red\">ecid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0<\/span>&quot; <span style=\"color: red\">priority<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0<\/span>&quot; <span style=\"color: red\">trancount<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">1<\/span>&quot; \r\n             <span style=\"color: red\">lastbatchstarted<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2010-12-21T18:19:01.437<\/span>&quot; <span style=\"color: red\">lastbatchcompleted<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2010-12-21T18:13:25.637<\/span>&quot; \r\n             <span style=\"color: red\">clientapp<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">Microsoft SQL Server Management Studio - Query<\/span>&quot; <span style=\"color: red\">hostname<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">WIN-5B9V8JPLP3H<\/span>&quot; \r\n             <span style=\"color: red\">hostpid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2708<\/span>&quot; <span style=\"color: red\">loginname<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">WIN-5B9V8JPLP3H\\Administrator<\/span>&quot; <span style=\"color: red\">isolationlevel<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">read committed (2)<\/span>&quot; \r\n             <span style=\"color: red\">xactid<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">12733<\/span>&quot; <span style=\"color: red\">currentdb<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">2<\/span>&quot; <span style=\"color: red\">lockTimeout<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">4294967295<\/span>&quot; <span style=\"color: red\">clientoption1<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">671090784<\/span>&quot; <span style=\"color: red\">clientoption2<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">390200<\/span>&quot;<span style=\"color: blue\">&gt;\r\n      &lt;<\/span><span style=\"color: #a31515\">executionStack<\/span><span style=\"color: blue\">&gt;\r\n        &lt;<\/span><span style=\"color: #a31515\">frame <\/span><span style=\"color: red\">line<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">3<\/span>&quot; <span style=\"color: red\">stmtstart<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">100<\/span>&quot; <span style=\"color: red\">stmtend<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">150<\/span>&quot; <span style=\"color: red\">sqlhandle<\/span><span style=\"color: blue\">=<\/span>&quot;<span style=\"color: blue\">0x020000005a74b3030117e049389a93b2ce5bfb48e272f938<\/span>&quot; <span style=\"color: blue\">\/&gt;\r\n      &lt;\/<\/span><span style=\"color: #a31515\">executionStack<\/span><span style=\"color: blue\">&gt;\r\n      &lt;<\/span><span style=\"color: #a31515\">inputbuf<\/span><span style=\"color: blue\">&gt;\r\n<\/span>BEGIN TRANSACTION\r\nINSERT INTO t1 DEFAULT VALUES\r\nWAITFOR DELAY '00:00:30'\r\nCOMMIT   <span style=\"color: blue\">&lt;\/<\/span><span style=\"color: #a31515\">inputbuf<\/span><span style=\"color: blue\">&gt;\r\n    &lt;\/<\/span><span style=\"color: #a31515\">process<\/span><span style=\"color: blue\">&gt;\r\n  &lt;\/<\/span><span style=\"color: #a31515\">blocking-process<\/span><span style=\"color: blue\">&gt;\r\n&lt;\/<\/span><span style=\"color: #a31515\">blocked-process-report<\/span><span style=\"color: blue\">&gt;<\/span><\/pre>\n<\/blockquote>\n<p>The output of the blocked process report in Extended Events is the same as the blocked process report from SQL Trace and Event Notifications.&#160; This is only a new mechanism of collecting this information, and when Denali releases RTM, this will be an Event Session that I install on my Denali based servers as a part of my configuration scripts, having it ready to activate when necessary.<\/p>\n<p>Make sure that you turn off the generation of blocked process reports by changing the \u2018blocked process threshold\u2019 sp_configure option back to 0 (zero) whenever you are not actively looking for blocked processes.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of my favorite features that was added to SQL Server 2005 has been the Blocked Process Report trace event which collects an XML report whenever a process is blocked inside of the database engine longer than the user configurable threshold.&#160; I wrote an article about this feature on SQL Server Central&#160; two years ago [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[40,45],"tags":[],"class_list":["post-543","post","type-post","status-publish","format-standard","hentry","category-sql-server-denali","category-xevent-a-day-series"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>An XEvent a Day (21 of 31) - The Future - Tracking Blocking in Denali - Jonathan Kehayias<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"An XEvent a Day (21 of 31) - The Future - Tracking Blocking in Denali - Jonathan Kehayias\" \/>\n<meta property=\"og:description\" content=\"One of my favorite features that was added to SQL Server 2005 has been the Blocked Process Report trace event which collects an XML report whenever a process is blocked inside of the database engine longer than the user configurable threshold.&#160; I wrote an article about this feature on SQL Server Central&#160; two years ago [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/\" \/>\n<meta property=\"og:site_name\" content=\"Jonathan Kehayias\" \/>\n<meta property=\"article:published_time\" content=\"2010-12-21T13:03:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-04-13T16:18:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.SQLskills.com\/blogs\/jonathan\/wp-content\/uploads\/windows-live-writer\/d5bff98342cb\/41cf99c5\/image_thumb.png\" \/>\n<meta name=\"author\" content=\"Jonathan Kehayias\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jonathan Kehayias\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/\"},\"author\":{\"name\":\"Jonathan Kehayias\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#\\\/schema\\\/person\\\/01c10d94f3648654ef706d5e6305f69c\"},\"headline\":\"An XEvent a Day (21 of 31) &#8211; The Future &#8211; Tracking Blocking in Denali\",\"datePublished\":\"2010-12-21T13:03:00+00:00\",\"dateModified\":\"2017-04-13T16:18:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/\"},\"wordCount\":473,\"commentCount\":5,\"image\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.SQLskills.com\\\/blogs\\\/jonathan\\\/wp-content\\\/uploads\\\/windows-live-writer\\\/d5bff98342cb\\\/41cf99c5\\\/image_thumb.png\",\"articleSection\":[\"SQL Server Denali\",\"XEvent a Day Series\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/\",\"url\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/\",\"name\":\"An XEvent a Day (21 of 31) - The Future - Tracking Blocking in Denali - Jonathan Kehayias\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.SQLskills.com\\\/blogs\\\/jonathan\\\/wp-content\\\/uploads\\\/windows-live-writer\\\/d5bff98342cb\\\/41cf99c5\\\/image_thumb.png\",\"datePublished\":\"2010-12-21T13:03:00+00:00\",\"dateModified\":\"2017-04-13T16:18:30+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#\\\/schema\\\/person\\\/01c10d94f3648654ef706d5e6305f69c\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.SQLskills.com\\\/blogs\\\/jonathan\\\/wp-content\\\/uploads\\\/windows-live-writer\\\/d5bff98342cb\\\/41cf99c5\\\/image_thumb.png\",\"contentUrl\":\"https:\\\/\\\/www.SQLskills.com\\\/blogs\\\/jonathan\\\/wp-content\\\/uploads\\\/windows-live-writer\\\/d5bff98342cb\\\/41cf99c5\\\/image_thumb.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Denali\",\"item\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/category\\\/sql-server-denali\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"An XEvent a Day (21 of 31) &#8211; The Future &#8211; Tracking Blocking in Denali\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#website\",\"url\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/\",\"name\":\"Jonathan Kehayias - The Rambling DBA\",\"description\":\"The Rambling DBA\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#\\\/schema\\\/person\\\/01c10d94f3648654ef706d5e6305f69c\",\"name\":\"Jonathan Kehayias\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g\",\"caption\":\"Jonathan Kehayias\"},\"sameAs\":[\"http:\\\/\\\/3.209.169.194\\\/blogs\\\/jonathan\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"An XEvent a Day (21 of 31) - The Future - Tracking Blocking in Denali - Jonathan Kehayias","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/","og_locale":"en_US","og_type":"article","og_title":"An XEvent a Day (21 of 31) - The Future - Tracking Blocking in Denali - Jonathan Kehayias","og_description":"One of my favorite features that was added to SQL Server 2005 has been the Blocked Process Report trace event which collects an XML report whenever a process is blocked inside of the database engine longer than the user configurable threshold.&#160; I wrote an article about this feature on SQL Server Central&#160; two years ago [&hellip;]","og_url":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/","og_site_name":"Jonathan Kehayias","article_published_time":"2010-12-21T13:03:00+00:00","article_modified_time":"2017-04-13T16:18:30+00:00","og_image":[{"url":"https:\/\/www.SQLskills.com\/blogs\/jonathan\/wp-content\/uploads\/windows-live-writer\/d5bff98342cb\/41cf99c5\/image_thumb.png","type":"","width":"","height":""}],"author":"Jonathan Kehayias","twitter_misc":{"Written by":"Jonathan Kehayias","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/#article","isPartOf":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/"},"author":{"name":"Jonathan Kehayias","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#\/schema\/person\/01c10d94f3648654ef706d5e6305f69c"},"headline":"An XEvent a Day (21 of 31) &#8211; The Future &#8211; Tracking Blocking in Denali","datePublished":"2010-12-21T13:03:00+00:00","dateModified":"2017-04-13T16:18:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/"},"wordCount":473,"commentCount":5,"image":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/#primaryimage"},"thumbnailUrl":"https:\/\/www.SQLskills.com\/blogs\/jonathan\/wp-content\/uploads\/windows-live-writer\/d5bff98342cb\/41cf99c5\/image_thumb.png","articleSection":["SQL Server Denali","XEvent a Day Series"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/","url":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/","name":"An XEvent a Day (21 of 31) - The Future - Tracking Blocking in Denali - Jonathan Kehayias","isPartOf":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/#primaryimage"},"image":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/#primaryimage"},"thumbnailUrl":"https:\/\/www.SQLskills.com\/blogs\/jonathan\/wp-content\/uploads\/windows-live-writer\/d5bff98342cb\/41cf99c5\/image_thumb.png","datePublished":"2010-12-21T13:03:00+00:00","dateModified":"2017-04-13T16:18:30+00:00","author":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#\/schema\/person\/01c10d94f3648654ef706d5e6305f69c"},"breadcrumb":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/#primaryimage","url":"https:\/\/www.SQLskills.com\/blogs\/jonathan\/wp-content\/uploads\/windows-live-writer\/d5bff98342cb\/41cf99c5\/image_thumb.png","contentUrl":"https:\/\/www.SQLskills.com\/blogs\/jonathan\/wp-content\/uploads\/windows-live-writer\/d5bff98342cb\/41cf99c5\/image_thumb.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-21-of-31-the-future-tracking-blocking-in-denali\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/"},{"@type":"ListItem","position":2,"name":"SQL Server Denali","item":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/category\/sql-server-denali\/"},{"@type":"ListItem","position":3,"name":"An XEvent a Day (21 of 31) &#8211; The Future &#8211; Tracking Blocking in Denali"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#website","url":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/","name":"Jonathan Kehayias - The Rambling DBA","description":"The Rambling DBA","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#\/schema\/person\/01c10d94f3648654ef706d5e6305f69c","name":"Jonathan Kehayias","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g","caption":"Jonathan Kehayias"},"sameAs":["http:\/\/3.209.169.194\/blogs\/jonathan"]}]}},"_links":{"self":[{"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/posts\/543","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/comments?post=543"}],"version-history":[{"count":0,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/posts\/543\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/media?parent=543"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/categories?post=543"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/tags?post=543"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}