↧
Answer by Dan Guzman for The state of the MSSQL Options set during query...
If you execute an explicit ad-hoc SET XACT_ABORT ON, the setting remains in effect for the duration of the current session. Other session settings will remain unchanged. In the case of SET XACT_ABORT...
View ArticleThe state of the MSSQL Options set during query after it ends
I am running a transactional query in SQL Server, and I want to turn XACT_ABORT on, so I write: SET XACT_ABORT ON.First, in such case, would I have overwritten other settings done by another query? I...
View Article