March 1, 2012 at 10:40 am
Hi,
I'm seeing blocking by the procedure WriteLockSession in ReportServerTempDB
I have verified the reportserver logs and there are errors.
I did not find any clue why this is occurring. Please see the attachment for blocking sessions
CREATE PROCEDURE [dbo].[WriteLockSession]
@SessionID as varchar(32)
AS
INSERT INTO [ReportServerTempDB].dbo.SessionLock WITH (ROWLOCK) (SessionID) VALUES (@SessionID
CREATE PROCEDURE [dbo].[CheckSessionLock]
@SessionID as varchar(32)
AS
DECLARE @Selected nvarchar(32)
SELECT @Selected=SessionID FROM [ReportServerTempDB].dbo.SessionLock WITH (ROWLOCK) WHERE SessionID = @SessionID
Thanks
March 1, 2012 at 11:18 am
Reporting services does this periodically. I'm not sure what can be done to resolve it.
March 1, 2012 at 11:52 am
I am also seeing this but this reportserver blocks got auto cleared in sometimes.
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply