Hi Yori,
default isolation level for Azure SQL Database is RCSI – Read Committed Snapshot Isolation level. What if you decide to not use this and you want to turn it off and go back to read committed
ALTER DATABASE CRMDB SET READ_COMMITTED_SNAPSHOT OFF
ALTER DATABASE CRMDB SET ALLOW_SNAPSHOT_ISOLATION OFF
SELECT name , snapshot_isolation_state,snapshot_isolation_state_desc, is_read_committed_snapshot_on
FROM sys.databases
WHERE name = 'CRMDB'
|