In SQL Server the default isolation level is READ_COMMITTED
but in SQL Azure the default level is READ_COMMITTED_SNAPSHOT
.
Suppose I change the default level in my SQL Azure server to READ_COMMITTED_SNAPSHOT
(using SET TRANSACTION ISOLATION LEVEL
) so that it behaves like SQL Server.
What negative consequences should I expect?