vote up 0 vote down star

Hi, I have a locking problem between a "select" and an "insert/update":

Select TableB.* from TableA
Join TableB on TableA.TableBId = TableB.TableBId

Start Transaction (ReadCommitted isolation)
Insert into TableA
Trigger “After Insert” on TableA: Update TableB
Commit transaction

The first select returns 10 identical rows (same TableB primary key). The update of TableB applies to the very row that is being selected. The deadlock happens when TableB is read from the "select"-query at the same time as TableB is being updated.

It is apparent to me that a row in TableB is being the cause of the lock. But how can this happen?

Database: SQL Server 2005

Schema definitions:

Schema definition for Table A (actual name is VotePicture)

/****** Object:  Table [dbo].[VotePicture]    Script Date: 11/03/2009 11:45:18 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[VotePicture](
    [VotePictureId] [int] IDENTITY(1,1) NOT NULL,
    [UserId] [int] NULL,
    [PictureId] [int] NOT NULL,
    [VoteId] [int] NULL,
    [ShowVote] [bit] NULL,
    [IPAddress] [char](15) NOT NULL,
    [CreateTS] [datetime] NOT NULL,
 CONSTRAINT [PK_Vote] PRIMARY KEY CLUSTERED 
(
    [VotePictureId] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
SET ANSI_PADDING OFF
GO
ALTER TABLE [dbo].[VotePicture]  WITH CHECK ADD  CONSTRAINT [FK_Vote_User] FOREIGN KEY([UserId])
REFERENCES [dbo].[User] ([UserId])
ON DELETE SET NULL
GO
ALTER TABLE [dbo].[VotePicture] CHECK CONSTRAINT [FK_Vote_User]
GO
ALTER TABLE [dbo].[VotePicture]  WITH CHECK ADD  CONSTRAINT [FK_Vote_Vote] FOREIGN KEY([VoteId])
REFERENCES [dbo].[Vote] ([VoteId])
ON UPDATE CASCADE
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[VotePicture] CHECK CONSTRAINT [FK_Vote_Vote]
GO
ALTER TABLE [dbo].[VotePicture]  WITH NOCHECK ADD  CONSTRAINT [FK_VotePicture_Picture] FOREIGN KEY([PictureId])
REFERENCES [dbo].[Picture] ([PictureId])
ON UPDATE CASCADE
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[VotePicture] CHECK CONSTRAINT [FK_VotePicture_Picture]

Schema definition for Table B (actual name is Picture)

/****** Object:  Table [dbo].[Picture]    Script Date: 11/03/2009 11:46:24 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Picture](
    [PictureId] [int] IDENTITY(1,1) NOT NULL,
    [PictureTypeId] [int] NOT NULL,
    [Name] [nvarchar](100) NOT NULL,
    [URL] [nvarchar](200) NOT NULL,
    [URLPart] [nvarchar](33) NOT NULL,
    [AlbumId] [int] NOT NULL,
    [Comment] [text] NOT NULL,
    [Age] [int] NOT NULL,
    [CreateTS] [datetime] NOT NULL,
    [ModifyTS] [datetime] NULL,
    [HDURL] [nvarchar](200) NULL,
    [UniqueHash] [nvarchar](32) NULL,
    [VoteCount] [int] NOT NULL CONSTRAINT [DF_Picture_VoteCount]  DEFAULT ((0)),
    [TotalVotePointsAmount] [int] NOT NULL CONSTRAINT [DF_Picture_TotalVotePointsAmount]  DEFAULT ((0)),
 CONSTRAINT [PK_Picture] PRIMARY KEY CLUSTERED 
(
    [PictureId] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY],
 CONSTRAINT [IX_URL] UNIQUE NONCLUSTERED 
(
    [URL] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY],
 CONSTRAINT [IX_URLPart_] UNIQUE NONCLUSTERED 
(
    [URLPart] ASC,
    [AlbumId] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
ALTER TABLE [dbo].[Picture]  WITH CHECK ADD  CONSTRAINT [FK_Picture_Album] FOREIGN KEY([AlbumId])
REFERENCES [dbo].[Album] ([AlbumId])
GO
ALTER TABLE [dbo].[Picture] CHECK CONSTRAINT [FK_Picture_Album]
GO
ALTER TABLE [dbo].[Picture]  WITH CHECK ADD  CONSTRAINT [FK_Picture_PictureType] FOREIGN KEY([PictureTypeId])
REFERENCES [dbo].[PictureType] ([PictureTypeId])
GO
ALTER TABLE [dbo].[Picture] CHECK CONSTRAINT [FK_Picture_PictureType]

Trigger on TableA

/****** Object:  Trigger [dbo].[UpdatePictureStats]    Script Date: 11/03/2009 11:49:24 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:  	<Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE TRIGGER [dbo].[UpdatePictureStats]
   ON  [dbo].[VotePicture]
   AFTER INSERT
AS 
BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;

    declare @insertedPictureId int
    declare @insertedVoteId int
    select @insertedPictureId = (select pictureId from Inserted)
    select @insertedVoteId = (select voteId from Inserted)

    if @insertedVoteId is not null
    BEGIN
    	declare @voteValue int
    	select @voteValue = (select Value from Vote where VoteId = @insertedVoteId)
    	Update Picture 
    	   set VoteCount = VoteCount + 1, 
    		   TotalVotePointsAmount = TotalVotePointsAmount + @voteValue
    	 where Picture.PictureId = @insertedPictureId
    END
END
flag
What is the schema - especially any primary and foreign keys and triggers on A and B? – Mark Nov 3 at 10:21
I have added schema definitions for both tables and also the trigger definition for Table A. – Marcus Nov 3 at 10:52

1 Answer

vote up 0 vote down

This is very generic informationm.
Deadlocks usually happen when different bits of code access resources (e.g. table A and B) in different order.

Make sure that access to both tables is always performed in the same order from all your code. i.e. select from table a, then select from table b. or vice versa

Whichever way you choose, you'll have to always access the tables in the same order. This will ensure dead locks will never happen.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.