Viewing 15 posts - 2,161 through 2,175 (of 8,416 total)
Alex Webber (2/24/2011)
February 24, 2011 at 5:02 am
glennhill (2/24/2011)
February 24, 2011 at 4:50 am
onixsoft (2/24/2011)
CREATE NONCLUSTERED INDEX [IDX_SSNHistory_IndID] ON [dbo].[SSNHistory] ([IndID])...
February 24, 2011 at 4:37 am
Alex Webber (2/24/2011)
February 24, 2011 at 4:29 am
glennhill (2/24/2011)
Can you offer any other advice on how we should debug this problem next time it occurs?
I would look not just at sys.dm_tran_locks, but also at sys.dm_os_waiting_tasks. I...
February 24, 2011 at 4:07 am
glennhill (2/24/2011)
I do have the full output from dm_tran_locks. But my suspicion is that the 'hobt_id's have changed in sys.partitions due to our index rebuild.
Yes, I read and understood that....
February 24, 2011 at 4:01 am
Alex Webber (2/24/2011)
February 24, 2011 at 3:46 am
glennhill (2/24/2011)
Not easy to map back this back to object names. The 'resource_associated_entity_id's no longer exist (as hobt_id in sys.partitions).
Ok, no problem, but the full output from the locks DMV...
February 24, 2011 at 3:40 am
Alex Webber (2/24/2011)
The INSERT and SELECT are from 1 table with 1 index (the clustered one), so how does the UPDLOCK come into play here?
Typically, the broken pattern is to...
February 24, 2011 at 3:21 am
atikdesai (2/23/2011)
There is one user who has permission to execute one SP.
In that SP, one table is created in database and finally it is dropped at the end of...
February 24, 2011 at 3:13 am
That looks like an ordinary conversion deadlock to me, which can be fixed by accessing objects in a consistent order or by using the UPDLOCK hint appropriately. You will...
February 24, 2011 at 3:08 am
onixsoft (2/24/2011)
No, by run in the Management Studio I do not get auto-parameterized plan also.
The following script gives me an auto-parameterized query in both cases:
CREATE TABLE dbo.SSNhistory
...
February 24, 2011 at 3:03 am
onixsoft (2/24/2011)
So no way to fix it with less blood?
If you run the IndId= GUID query from Management Studio, do you get an auto-parameterized plan? I would expect that...
February 24, 2011 at 2:34 am
glennhill (2/24/2011)
The head of the blocking chain is not waiting on any resource - i.e. waitresource in sysprocesses is blank. The process is sleeping, awaiting command.
You said the 21 rows...
February 24, 2011 at 2:30 am
dant12 (2/23/2011)
qxcntxt.cpp:956 "No exceptions should be raised by this code"
As far as I can tell, this bug was fixed in SP2 for SQL Server 2005. Which version are you...
February 24, 2011 at 2:26 am
Viewing 15 posts - 2,161 through 2,175 (of 8,416 total)