|
|
|
|
|
by chris_wot
4066 days ago
|
|
One thing that PG does that SQL Server doesn't do by default is it is built with MVCC in mind. If you want MVCC on SQL Server, you need to use snapshot isolation, and for snapshot isolation SQL Server needs to use TempDB. TempDB, at least last I looked, doesn't really scale too well. Just an observation. |
|