Vidyalelo
MySQL · Q34

MySQL

Programming · MySQL · question 34

Q34

What is the durability property of transactions?

A.
statements form a logic unit
B.
database remains consistent
C.
one transaction does not affect the other
D.
transaction effects are recorded permanently
Answer

Answer: Option D

Solution

Answer: Option D
Solution:
The durability property of transactions in MySQL refers to the guarantee that once a transaction is committed, its effects are recorded permanently and will not be lost, even in the event of a system failure. This means that the changes made by committed transactions will persist even after the system restarts or crashes. Therefore, Option D is the correct answer.