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

Is mysql a server or database?

1 Answers  


Is mariadb faster than mysql?

1 Answers  


How to return query output in html format?

1 Answers  


How to start mysql server?

1 Answers  


What is ACID?

2 Answers  


What is table level locking in mysql?

1 Answers  


Have you ever used MySQL Administrator and MySQL Query Browser? Describe the tasks you accomplished with these tools?

1 Answers   TCS,


What is the maximum number of records in mysql table?

1 Answers  


How do I check mysql version?

1 Answers  


What is triggers?

1 Answers  


How do I fix a crashed mysql database?

1 Answers  


How do I copy an entire mysql database?

1 Answers  


Categories