Questions tagged [mvcc]

MVCC - Multi Version Concurrency Control

MVCC is a method of concurrency control, typically used in databases and transactional memories. Each transaction sees a snapshot of database when it started and its changes are only seen when transaction is committed.This method provides more concurrency them locks. Use all popular databases like Oracle, PostGres, InnoDB of MySQL etc.

91 questions
0
votes
2 answers

Changin DB transaction control in flyway with hsql

In HSQL to change TRANSACTION CONTROL there can't be any active transactions. Flyway, in turn, after committing migration X and before executing SQL from migration X, sets autocommitt=false and executes some of its own statements. So if the…
Lukasz Lichota
  • 243
  • 1
  • 4
  • 10
1 2 3 4 5 6
7