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 are the mysql database files stored in system ?
What is the difference between the LIKE and REGEXP operators?
What is the datatype for password in mysql?
How to drop an existing view in mysql?
Explain the difference between mysql and mysqli interfaces in PHP?
What is row level locking in access?
What are the functions used to encrypt and decrypt the data present in mysql?
What is the difference between char and varchar?
What is mysql shell?
What are the other commands to know the structure of a table using mysql commands except explain command?
Restore database (or database table) from backup.
write a c++ program to add a user to mysql.the user should be permitted to only "insert" into the given database