Default Transaction Isolation Level

  • Is there a way to change the default transaction isolation level, so that all connections to the database use this level?  If not globally, is there a way to set a default for a specific user?

    Thanks.

  • This was removed by the editor as SPAM

  • There are 4 types of transaction isolation levels. Here is the syntax :

    SET TRANSACTION ISOLATION LEVEL

        { READ COMMITTED

            | READ UNCOMMITTED

            | REPEATABLE READ

            | SERIALIZABLE

        }

    Once you set the Isolation level, it will work for that particular connection.

    --Kishore

     

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

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