About 8,600,000 results
Open links in new tab
  1. How do ACID and database transactions work? - Stack Overflow

    May 20, 2019 · ACID is a set of properties that you would like to apply when modifying a database. Atomicity Consistency Isolation Durability A transaction is a set of related changes …

  2. database - Is there any NoSQL data store that is ACID compliant ...

    Apr 9, 2010 · BergDB is a light-weight, open-source, NoSQL database designed from the start to run ACID transactions. Actually, BergDB is "more" ACID than most SQL databases in the …

  3. How to implement the ACID model for a database? - Stack Overflow

    Nov 24, 2010 · How do Igo about achieving the ACID properties for my database - A- Atomicity, C- Consistency, I- Isolation, D- Durability. Database system being used - MySql.

  4. database - Explanation of BASE terminology - Stack Overflow

    In the NoSQL database world, ACID transactions are less fashionable as some databases have loosened the requirements for immediate consistency, data freshness and accuracy in order to …

  5. database - What's a real-world example of ACID? - Stack Overflow

    I'm looking for a real-world example for the various ACID properties of a database.

  6. SQL Server and ACID property of Database - Stack Overflow

    Jul 9, 2011 · 6 I am newbie to database and SQL Server. So when i have search things about database on internet i have found that The Database said to be good if it obey or follow the …

  7. What did MongoDB not being ACID compliant before v4 really …

    259 I am not a database expert and have no formal computer science background, so bear with me. I want to know the kinds of real world negative things that can happen if you use an old …

  8. database - What Applications Don't Need ACID? - Stack Overflow

    Apr 25, 2011 · Sorry for the ignorant question, but what kind of applications wouldn't require an ACID compliant database server? I have a SQL Server background where ACID has always …

  9. nosql - What are some real world implications of non-ACID …

    Oct 13, 2011 · An ACID database would guarantee that the final result is either one user's data or the other's, or possibly that one user's update will fail and return an error-message to the user.

  10. acid - How do databases perform atomic I/O? - Stack Overflow

    Feb 9, 2012 · So how does this implement ACID: Atomicity: My session, my transaction, it all goes or none of it goes. When I commit, I can't do anything until the commit finishes. Consistency: …