Why is the database property Allow Snapshot Isolation set to TRUE on the master and msdb databases, but FALSE on other system databases? The default option for this property is also FALSE when creating user databases.
Asked
Active
Viewed 1,117 times
5
Jon Seigel
- 16,673
- 6
- 41
- 83
jrara
- 5,153
- 19
- 52
- 65
-
It's mentioned in MSDN but don't know *why* – gbn Sep 17 '11 at 11:40
1 Answers
3
I would imagine that it is enabled to minimize blocking in the master and msdb databases of the system processes. It is disabled in user databases because in user databases it can greatly increase the disk IO requirements of the tempdb database.
mrdenny
- 26,776
- 2
- 40
- 79