I accidentally found zombie transaction is mentioned in SqlTransaction code. So, what is zombie transaction?
I accidentally found zombie transaction is mentioned in SqlTransaction code. So, what is zombie
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A zombie transaction is a transaction that cannot be committed (due to an unrecoverable error) but is still open.
Here, the second
INSERTrenders the transaction zombie.It cannot write anymore and should be rolled back, but you can still read in its scope (the innermost
SELECTreturns a record; the outermost does not).