• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/9

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

9 Cards in this Set

  • Front
  • Back
A.C.I.D.
Atomicity
Consistency preservation
Isolation
Durability or permanency
Atomicity
A transaction is an atomic unit of processing; it is either preformed in its entirety or not preformed at all
Consistency preservation
A transaction is consistency preserving if its complete execution take(s) the database from one consistent state to another.
Isolation
A transaction should appear as though it is being executed in isolation from other transactions. That is, the execution of a transaction should not be interfered with by any other transactions executing concurrently
Durability or permanency
The changes applied to the database by a committed transaction must persist in the database. These changes must not be lost because of any failure.
Database State
a collection of all the stored data items (values) in the database at a given point in time
Consistent State
Satisfies the constraints specified in the schema as well as any other constraints that should hold on the database.
Schedule or History
The order of execution of operations from various transactions are executing concurrently in an interleaved fashion.
Two operations in a schedule are said to conflict if they satisfy all three of these conditions
(1) They belong to different transactions
(2) They access the same item X
(3) At least one of the operations is a write(X)