0 votes
in DBMS by

Properties of the transaction are known as ACID properties. These are:

  • Atomicity: Ensures the completeness of all transactions performed. Checks whether every transaction is completed successfully or not. If not, then the transaction is aborted at the failure point and the previous transaction is rolled back to its initial state as changes are undone.
  • Consistency: Ensures that all changes made through successful transactions are reflected properly on the database.
  • Isolation: Ensures that all transactions are performed independently and changes made by one transaction are not reflected on others.
  • Durability: Ensures that the changes made in the database with committed transactions persist as it is even after a system failure.

Related questions

0 votes
asked Apr 2, 2020 in DBMS by rajeshsharma
0 votes
asked Dec 3, 2021 in Cloud Computing by DavidAnderson
...