November 17, 2023 at 3:20 pm
This is the 1st time I have seen some sessions blocked by SPID 0. Does anyone know what this zero session is?
"He who learns for the sake of haughtiness, dies ignorant. He who learns only to talk, rather than to act, dies a hyprocite. He who learns for the mere sake of debating, dies irreligious. He who learns only to accumulate wealth, dies an atheist. And he who learns for the sake of action, dies a mystic."[/i]
November 18, 2023 at 4:10 pm
Thanks for posting your issue and hopefully someone will answer soon.
This is an automated bump to increase visibility of your question.
November 22, 2023 at 1:00 pm
Hello,
maybe you are able to check the query from SPID 0
DECLARE @sqltext VARBINARY(128)
SELECT @sqltext = sql_handle
FROM sys.sysprocesses
WHERE spid = 0
SELECT TEXT
FROM sys.dm_exec_sql_text(@sqltext)
Good luck,
Best regards,
Andreas
November 24, 2023 at 3:40 pm
This is the 1st time I have seen some sessions blocked by SPID 0. Does anyone know what this zero session is?
Where are you getting this information from???
SPID 0 in the BlkBy column of sp_who2 and the blocking_session_id of the sys.dm_exec_requests DMV means there is NO BLOCKING on that particular session_id.
Please post the code that you're using to determine blocking so that we can help you clear things up.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 25, 2023 at 12:15 pm
This was removed by the editor as SPAM
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply