DEV Community

Ratik Mahajan
Ratik Mahajan

Posted on

ACID PROPERTIES IN DATABASE

Question : What is ACID Properties in SQL Database ?

  1. A-> Atomicity: all the transaction in database should be atomic. it means that all the transaction step should be executed or whole transaction can be rolled back. C-> Consistency: this is spoken in terms of consistency. if there is any write written, then the read just after that should get the right data. data should not be stale data and it should be consistent. I-> Isolation: Multiple transactions should happen independently across the database without interfering with other transactions. D-> Durability: the changes occurs in the database are successful even if there is system failure or error occurs

Top comments (0)

Billboard image

Try REST API Generation for Snowflake

DevOps for Private APIs. Automate the building, securing, and documenting of internal/private REST APIs with built-in enterprise security on bare-metal, VMs, or containers.

  • Auto-generated live APIs mapped from Snowflake database schema
  • Interactive Swagger API documentation
  • Scripting engine to customize your API
  • Built-in role-based access control

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay