-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Frequent deadlocks on concurrent inserts with identity columns #25345
Comments
Alternatively use an |
Using Could be somewhat related to #9118, in that we wouldn't fetch generated values at all. |
We might still be able to use |
Another trigger issue: #12064 |
The deadlocks are caused by the
SELECT
statement that reads the generated values.These could be avoided by using
ReadUncommitted
isolation level by default or by addingREADUNCOMMITTED
table hint.The text was updated successfully, but these errors were encountered: