|
You are here |
www.ahmed-ibrahim.com | ||
| | | | |
timilearning.com
|
|
| | | | | Distributed databases typically divide their tables into partitions spread across different servers which get accessed by many clients. In these databases, client transactions often span the different servers, as the transactions may need to read from various partitions. A distributed transaction is a database transaction which spans multiple servers. This post will detail how databases guarantee some ACID properties when executing distributed transactions. | |
| | | | |
blog.dancrisan.com
|
|
| | | | | Let's start with some new vocabulary and acronyms: DBMS : Database Management System Data model : concepts describing a collection of data (example: relational data model, object-oriented data model). Schema : characteristics and properties of... | Dan Crisan | Techie, Blogger, Diversity Advocate and A Little Bit More . This is my technical blog (: | |
| | | | |
johnjr.dev
|
|
| | | | | When we study transactions in relational databases, one of the first things we learn are the guarantees that a transaction must provide. ACID(Atomicity, Consistency, Isolation, Durability) are the properties that we desire. Here, I will discuss the Isolation level in more detail and show that atomicity alone is not enough when handling concurrency. One classic example of the importance of atomicity is moving money between accounts. So, imagine that we have two accounts and we would like to transfer the total amount from one account to another one. In a relational database, what we need to do is three steps: | |
| | | | |
cleverheap.com
|
|
| | | Vast of the today's applications leverage on some type of a database that provides ACID guarantees with transactions. It is important to know the differences between different isolation levels to facilitate the choice when applying them... | ||