Microsoft SQL Server 2016を使用して、複数のステートメントを含むトランザクション用のコードを記述します。 トランザクションで使用されるいくつかのテーブルで、リーダーとライターの間に高い競合があります。 tempdbスペースの使用を最小限に抑える必要があります。 また、読み取りクエリが書き込みクエリをブロックしないようにする必要があります。 どの分離レベルを使用しますか?
正解:C
Explanation For most applications, read committed isolation using row versioning is recommended over snapshot isolation for the following reasons: It consumes less tempdb space than snapshot isolation. Etc. References: https://msdn.microsoft.com/en-us/library/ms188277.aspx