Explain multi-version concurrency control in MySQL?
Answers were Sorted based on User's Feedback
Answer / cp
Multiversion concurrency control (abbreviated MCC or MVCC),
in the database field of computer science, is a concurrency
control method commonly used by database management systems
to provide concurrent access to the database.
MVCC provides each user connected to the database with a
"snapshot" of the database for that person to work with. Any
changes made will not be seen by other users of the database
until the transaction has been committed.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / amith
Each row has two additional columns associated with it -
creation time and deletion time, but instead of storing
timestamps, MySQL stores version numbers
Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of mysqli_fetch_assoc?
Why we use mysql database?
What is a left join mysql?
Is mysql server free?
can you tell how can you display the maximum salary in sql? : Mysql dba
How we get sum of column.
How to connect html form to mysql database using php?
How to Change a users password from unix shell.
What is full form of xampp?
What is regex in mysql?
What is data directory in mysql?
What are all the Common SQL Function?