These deadlock graphs can be used in the Shred Deadlock Graph code library.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
<deadlock-list> <deadlock victim="process181735b88"> <process-list> <process id="process181735b88" taskpriority="0" logused="352" waitresource="KEY: 21:72057594049658880 (010008207756)" waittime="9564" ownerId="181040" transactionname="user_transaction" lasttranstarted="2011-05-15T00:12:52.523" XDES="0x19208ce90" lockMode="X" schedulerid="2" kpid="4380" status="suspended" spid="60" sbid="0" ecid="0" priority="0" trancount="2" lastbatchstarted="2011-05-15T00:12:52.523" lastbatchcompleted="2011-05-15T00:12:28.323" clientapp="Microsoft SQL Server Management Studio - Query" hostname="WS-HPDV7" hostpid="4636" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="181040" currentdb="21" lockTimeout="4294967295" clientoption1="671090784" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="5" stmtstart="38" sqlhandle="0x0200000071e4b91c182ff5918af8199d2b19e9fb930172bc"> UPDATE [dbo].[Tally] set [N] = [N]-@1 WHERE [N]=@2 </frame> <frame procname="adhoc" line="5" stmtstart="136" sqlhandle="0x02000000c2adc438b1f60f3b4049de8c294e3acf4c0113c0"> UPDATE dbo.Tally SET N = N-1 WHERE N = 1 --ROLLBACK TRANSACTION </frame> </executionStack> <inputbuf> BEGIN TRANSACTION UPDATE dbo.Tally_sm SET N = N-2 WHERE N = 1 UPDATE dbo.Tally SET N = N-1 WHERE N = 1 --ROLLBACK TRANSACTION </inputbuf> </process> <process id="process181734bc8" taskpriority="0" logused="360" waitresource="KEY: 21:72057594038976512 (010086470766)" waittime="4208" ownerId="181034" transactionname="user_transaction" lasttranstarted="2011-05-15T00:12:46.773" XDES="0x18f0c9970" lockMode="X" schedulerid="2" kpid="4388" status="suspended" spid="56" sbid="0" ecid="0" priority="0" trancount="2" lastbatchstarted="2011-05-15T00:12:57.880" lastbatchcompleted="2011-05-15T00:12:46.773" clientapp="Microsoft SQL Server Management Studio - Query" hostname="WS-HPDV7" hostpid="4636" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="181034" currentdb="21" lockTimeout="4294967295" clientoption1="671090784" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="1" stmtstart="38" sqlhandle="0x02000000c556121369885d6117621bc2f0e2091c81bf6e70"> UPDATE [dbo].[Tally_sm] set [N] = [N]-@1 WHERE [N]=@2 </frame> <frame procname="adhoc" line="1" sqlhandle="0x02000000b8cc250508388dfe00dcef08bfd27496a9da3b34"> UPDATE dbo.Tally_sm SET N = N-2 WHERE N = 1 </frame> </executionStack> <inputbuf> UPDATE dbo.Tally_sm SET N = N-2 WHERE N = 1 </inputbuf> </process> </process-list> <resource-list> <keylock hobtid="72057594049658880" dbid="21" objectname="Sandbox.dbo.Tally" indexname="PK_Tally" id="lock1852e8700" mode="X" associatedObjectId="72057594049658880"> <owner-list> <owner id="process181734bc8" mode="X"/> </owner-list> <waiter-list> <waiter id="process181735b88" mode="X" requestType="wait"/> </waiter-list> </keylock> <keylock hobtid="72057594038976512" dbid="21" objectname="Sandbox.dbo.Tally_sm" indexname="PK_Tally_sm" id="lock184e54080" mode="X" associatedObjectId="72057594038976512"> <owner-list> <owner id="process181735b88" mode="X"/> </owner-list> <waiter-list> <waiter id="process181734bc8" mode="X" requestType="wait"/> </waiter-list> </keylock> </resource-list> </deadlock> </deadlock-list> |
And here is a multi-victim deadlock. Created from code posted by Linchi Shea at
//sqlblog.com/blogs/linchi_shea/archive/2011/10/02/multi-victim-deadlocks-a-simple-example.aspx and extracted from the system_health extended event.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
<deadlock> <victim-list> <victimProcess id="process3749e50c8" /> <victimProcess id="process3749e4928" /> <victimProcess id="process3749e5c38" /> <victimProcess id="process37797c928" /> <victimProcess id="process3749e4558" /> <victimProcess id="process3747e70c8" /> <victimProcess id="process378639c38" /> <victimProcess id="process375a72558" /> <victimProcess id="process3786390c8" /> </victim-list> <process-list> <process id="process3749e50c8" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4486" ownerId="2903582" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x377ea23a8" lockMode="IX" schedulerid="1" kpid="38928" status="suspended" spid="55" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.633" lastattention="1900-01-01T00:00:00.633" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903582" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> <process id="process3749e4928" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4486" ownerId="2903586" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x37e04f078" lockMode="IX" schedulerid="1" kpid="4244" status="suspended" spid="64" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.637" lastattention="1900-01-01T00:00:00.637" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903586" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> <process id="process3749e5c38" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4487" ownerId="2903585" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x37ab7cd28" lockMode="IX" schedulerid="1" kpid="38892" status="suspended" spid="61" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.637" lastattention="1900-01-01T00:00:00.637" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903585" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> <process id="process37797c928" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4487" ownerId="2903584" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x3754e8d28" lockMode="IX" schedulerid="1" kpid="32072" status="suspended" spid="59" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.637" lastattention="1900-01-01T00:00:00.637" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903584" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> <process id="process3749e4558" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4487" ownerId="2903583" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x377ea2d28" lockMode="IX" schedulerid="1" kpid="36388" status="suspended" spid="57" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.637" lastattention="1900-01-01T00:00:00.637" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903583" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> <process id="process3747e70c8" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4487" ownerId="2903581" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x37ab7c3a8" lockMode="IX" schedulerid="2" kpid="37560" status="suspended" spid="63" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.627" lastattention="1900-01-01T00:00:00.627" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903581" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> <process id="process378639c38" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4487" ownerId="2903580" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x377b60d28" lockMode="IX" schedulerid="2" kpid="22656" status="suspended" spid="62" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.627" lastattention="1900-01-01T00:00:00.627" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903580" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> <process id="process375a72558" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4487" ownerId="2903579" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x377b616a8" lockMode="IX" schedulerid="2" kpid="22960" status="suspended" spid="60" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.623" lastattention="1900-01-01T00:00:00.623" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903579" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> <process id="process3786390c8" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4487" ownerId="2903578" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x377b603a8" lockMode="IX" schedulerid="2" kpid="30268" status="suspended" spid="58" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.623" lastattention="1900-01-01T00:00:00.623" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903578" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> <process id="process3747e7868" taskpriority="0" logused="0" waitresource="OBJECT: 2:264388011:0 " waittime="4487" ownerId="2903577" transactionname="user_transaction" lasttranstarted="2012-10-25T20:49:28.517" XDES="0x37ab7d6a8" lockMode="IX" schedulerid="2" kpid="37880" status="suspended" spid="56" sbid="0" ecid="0" priority="0" trancount="3" lastbatchstarted="2012-10-25T20:49:56.640" lastbatchcompleted="2012-10-25T20:49:56.623" lastattention="1900-01-01T00:00:00.623" clientapp=".Net SqlClient Data Provider" hostname="WS-HPDV7" hostpid="17052" loginname="WS-HPDV7\wgshef" isolationlevel="read committed (2)" xactid="2903577" currentdb="2" lockTimeout="4294967295" clientoption1="673187936" clientoption2="390200"> <executionStack> <frame procname="adhoc" line="6" stmtstart="16" sqlhandle="0x02000000eeda9d033f24084ed8191c2cee06a6148f7ea6240000000000000000000000000000000000000000"> UPDATE [dbo].[junk] set [i] = @1 </frame> <frame procname="adhoc" line="6" stmtstart="142" sqlhandle="0x0200000095ebf5346d60a6b12dbee5fd29e4a7e173e769f80000000000000000000000000000000000000000"> UPDATE dbo.junk SET i=1; --ROLLBACK </frame> </executionStack> <inputbuf> BEGIN TRANSACTION SELECT * FROM junk WITH (TABLOCK, HOLDLOCK); UPDATE dbo.junk SET i=1; --ROLLBACK </inputbuf> </process> </process-list> <resource-list> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process37797c928" mode="S" /> <owner id="process3749e4558" mode="S" /> <owner id="process3747e70c8" mode="S" /> <owner id="process3747e70c8" mode="IX" requestType="convert" /> <owner id="process3749e4558" mode="IX" requestType="convert" /> <owner id="process37797c928" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process3749e50c8" mode="IX" requestType="convert" /> </waiter-list> </objectlock> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process37797c928" mode="S" /> <owner id="process3749e4558" mode="S" /> <owner id="process3747e70c8" mode="S" /> <owner id="process3747e70c8" mode="IX" requestType="convert" /> <owner id="process3749e4558" mode="IX" requestType="convert" /> <owner id="process37797c928" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process3749e4928" mode="IX" requestType="convert" /> </waiter-list> </objectlock> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process37797c928" mode="S" /> <owner id="process3749e4558" mode="S" /> <owner id="process3747e70c8" mode="S" /> <owner id="process3747e70c8" mode="IX" requestType="convert" /> <owner id="process3749e4558" mode="IX" requestType="convert" /> <owner id="process37797c928" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process3749e5c38" mode="IX" requestType="convert" /> </waiter-list> </objectlock> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process3749e5c38" mode="S" /> <owner id="process3749e4558" mode="S" /> <owner id="process3747e70c8" mode="S" /> <owner id="process3747e70c8" mode="IX" requestType="convert" /> <owner id="process3749e4558" mode="IX" requestType="convert" /> <owner id="process3749e5c38" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process37797c928" mode="IX" requestType="convert" /> </waiter-list> </objectlock> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process37797c928" mode="S" /> <owner id="process3749e50c8" mode="S" /> <owner id="process3747e70c8" mode="S" /> <owner id="process3749e50c8" mode="IX" requestType="convert" /> <owner id="process3747e70c8" mode="IX" requestType="convert" /> <owner id="process37797c928" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process3749e4558" mode="IX" requestType="convert" /> </waiter-list> </objectlock> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process37797c928" mode="S" /> <owner id="process3749e50c8" mode="S" /> <owner id="process3747e7868" mode="S" /> <owner id="process3747e7868" mode="IX" requestType="convert" /> <owner id="process3749e50c8" mode="IX" requestType="convert" /> <owner id="process37797c928" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process3747e70c8" mode="IX" requestType="convert" /> </waiter-list> </objectlock> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process37797c928" mode="S" /> <owner id="process3749e50c8" mode="S" /> <owner id="process3747e7868" mode="S" /> <owner id="process3747e7868" mode="IX" requestType="convert" /> <owner id="process3749e50c8" mode="IX" requestType="convert" /> <owner id="process37797c928" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process378639c38" mode="IX" requestType="convert" /> </waiter-list> </objectlock> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process37797c928" mode="S" /> <owner id="process3749e50c8" mode="S" /> <owner id="process3747e7868" mode="S" /> <owner id="process3747e7868" mode="IX" requestType="convert" /> <owner id="process3749e50c8" mode="IX" requestType="convert" /> <owner id="process37797c928" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process375a72558" mode="IX" requestType="convert" /> </waiter-list> </objectlock> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process37797c928" mode="S" /> <owner id="process3749e50c8" mode="S" /> <owner id="process3747e7868" mode="S" /> <owner id="process3747e7868" mode="IX" requestType="convert" /> <owner id="process3749e50c8" mode="IX" requestType="convert" /> <owner id="process37797c928" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process3786390c8" mode="IX" requestType="convert" /> </waiter-list> </objectlock> <objectlock lockPartition="0" objid="264388011" subresource="FULL" dbid="2" objectname="tempdb.dbo.junk" id="lock37a897b00" mode="S" associatedObjectId="264388011"> <owner-list> <owner id="process37797c928" mode="S" /> <owner id="process3749e50c8" mode="S" /> <owner id="process3749e50c8" mode="IX" requestType="convert" /> <owner id="process37797c928" mode="IX" requestType="convert" /> </owner-list> <waiter-list> <waiter id="process3747e7868" mode="IX" requestType="convert" /> </waiter-list> </objectlock> </resource-list> </deadlock> |