Question:

Which SQL operation is not part of the ACID properties?

Show Hint

When considering ACID properties, focus on how transactions are committed, rolled back, and saved, rather than on index creation or structure changes.
Updated On: Jun 16, 2025
  • COMMIT
  • ROLLBACK
  • CREATE INDEX
  • SAVEPOINT
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

ACID (Atomicity, Consistency, Isolation, Durability) properties ensure that database transactions are processed reliably. The operations related to ACID properties include COMMIT, ROLLBACK, and SAVEPOINT. CREATE INDEX is a DDL operation for indexing and does not directly relate to ACID properties.
Was this answer helpful?
0
0