Transaction Isolation Level

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zeny
    New Member
    • Jul 2006
    • 44

    Transaction Isolation Level

    Hi everyone!

    I´m using postgreql 8.3 and I know that the default transaction level in postgresql is READ_COMMITED, but how can I check the actual transaction isolation level at any time (in pgadminIII, preferably)?

    Regards
  • rski
    Recognized Expert Contributor
    • Dec 2006
    • 700

    #2
    Originally posted by zeny
    Hi everyone!

    I´m using postgreql 8.3 and I know that the default transaction level in postgresql is READ_COMMITED, but how can I check the actual transaction isolation level at any time (in pgadminIII, preferably)?

    Regards
    I do not use PgAdmin, form psql client you can write
    Code:
     show transaction isolation level;
    I believe you can use it also under PgAdmin.

    Comment

    • zeny
      New Member
      • Jul 2006
      • 44

      #3
      Originally posted by rski
      I do not use PgAdmin, form psql client you can write
      Code:
       show transaction isolation level;
      I believe you can use it also under PgAdmin.
      Thank u very much, it works under PgAdmin alright.

      Comment

      Working...