Which ACID property ensures that transactions can be committed or rolled back completely, without partial execution?

  • Consistency
  • Atomicity
  • Isolation
  • Durability
The correct option is Atomicity. Atomicity in ACID properties ensures that transactions are either committed entirely or rolled back entirely, without any partial execution. This means that if a transaction encounters any error or failure during its execution, all changes made by the transaction are undone to maintain data consistency and integrity. Atomicity is crucial in database management to ensure that transactions are completed successfully or not at all, preventing incomplete or partially executed transactions from affecting the database's overall state.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *