Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. ALTER DATABASE [<databasename>]
  2. SET READ_COMMITTED_SNAPSHOT ON
  3.  
  4. ALTER DATABASE <Your crm database>
  5. SET ALLOW_SNAPSHOT_ISOLATION ON
  6.  
  7. snapshot_isolation_state_desc = ON &
  8. is_read_committed_snapshot_on = 1.
  9.  
  10. ALTER DATABASE [<databasename>]
  11. SET READ_COMMITTED_SNAPSHOT off
  12.  
  13. ALTER DATABASE <Your crm database>
  14. SET ALLOW_SNAPSHOT_ISOLATION off
  15.  
  16. snapshot_isolation_state_desc = OFF &
  17. is_read_committed_snapshot_on = 0.
  18.  
  19. ALTER DATABASE [<databasename>]
  20. SET READ_COMMITTED_SNAPSHOT ON
  21.  
  22. ALTER DATABASE <Your crm database>
  23. SET ALLOW_SNAPSHOT_ISOLATION ON
  24.  
  25. **snapshot_isolation_state_desc = OFF &**
  26. is_read_committed_snapshot_on = 1.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement