Explain multi-version concurrency control in MySQL?

Answers were Sorted based on User's Feedback



Explain multi-version concurrency control in MySQL?..

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

Explain multi-version concurrency control in MySQL?..

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

Post New Answer

More MySQL Interview Questions

Can you tell the difference between mysql_connect and mysql_pconnect? : Mysql dba

0 Answers  


What is a heap table?

0 Answers  


What are the critical issues you have resolved in your company

0 Answers   Wipro,


How to find out the second largest element from mysql table

15 Answers  


can you tell the order of sql select statement? : Mysql dba

0 Answers  






How do I copy a table in mysql workbench?

0 Answers  


What is mysqladmin flush hosts?

0 Answers  


What are the non-standard sql commands supported by 'mysql'?

0 Answers  


How do you create a primary key?

0 Answers  


What are numeric data types?

0 Answers  


What is difference between pdo and mysqli?

0 Answers  


How to dump a table from a database.

0 Answers  


Categories