What is the option that can be used in PostgreSQL to make transactions see rows affected in previous parts of the transaction?

Questions by sripri   answers by sripri

Showing Answers 1 - 6 of 6 Answers

santhanapandi

  • Jul 1st, 2013
 

The SQL standard defines four levels of transaction isolation in terms of three phenomena that must be prevented between concurrent transactions. These undesirable phenomena are:

Dirty read
A transaction reads data written by a concurrent uncommitted transaction.

Nonrepeatable read
A transaction re-reads data it has previously read and finds that data has been modified by another transaction (that committed since the initial read).

Phantom read
A transaction re-executes a query returning a set of rows that satisfy a search condition and finds that the set of rows satisfying the condition has changed due to another recently-committed transaction.

  Was this answer useful?  Yes

supriya

  • Dec 8th, 2017
 

You can set isolation level as read uncommited.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions