Domanda

I have found that Teradata uses:

READ_ISOLATION_LEVEL= ACCESS|READ|WRITE

How it correspond to usual read commited/dirty in usual databases? Thanks.

È stato utile?

Soluzione

Not sure if this addresses your question entirely:

ACCESS locking would allow dirty reads allows WRITE lock to be in place. READ locking allows only committed reads and can block WRITE/EXCLUSIVE locks while reading data. WRITE lock prevents READ locks from access data but allows ACCESS (dirty read) lock to access data.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top