Enable snapshot isolation

  • will these commands enable snapshot isolation on my prod database?

    ALTER DATABASE Prod SET READ_COMMITTED_SNAPSHOT ON

    ALTER DATABASE Prod SET ALLOW_SNAPSHOT_ISOLATION ON

    Once enabled, is there a way to see, what isolation mode my database running?

  • Once enabled, is there a way to see, what isolation mode my database running?

    select [name], is_read_committed_snapshot_on,

    snapshot_isolation_state, snapshot_isolation_state_desc

    from sys.databases;

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply