Tuesday 11 March 2014

TRANSACTION MANAGEMENT

TRANSACTION MANAGEMENT

Transaction
A transaction is a unit of a program execution that accesses and possibly modifies various data
objects (tuples, relations).
A transaction is a Logical unit of database processing that includes one or more access
operations (read -retrieval, write - insert or update, delete).
A transaction (set of operations) may be stand-alone specified in a high level language like SQL
submitted interactively, or may be embedded within a program.
A transaction (collection of actions) makes transformations of system states while preserving the
database consistency.
A user’s program may carry out many operations on the data retrieved from the database, but the
DBMS is only concerned about what data is read/written from/to the database.
A transaction is the DBMS’s abstract view of a user program: a sequence of reads and writes.
PROPOERTIES OF TRANSACTION
The DBMS need to ensure the following properties of transactions:
1. Atomicity
– Transactions are either done or not done
– They are never left partially executed
An executing transaction completes in its entirety or it is aborted altogether.
–e.g., Transfer_Money (Amount, X, Y) means i) DEBIT (Amount, X);
ii) CREDIT (Amount, Y). Either both take place or none
2. Consistency
– Transactions should leave the database in a consistent state
If each Transaction is consistent, and the DB starts consistent, then the Database ends up
consistent.
–If a transaction violates the database’s consistency rules, the entire transaction will be
rolled back and the database will be restored to a state consistent with those rules.

3. Isolation
– Transactions must behave as if they were executed in isolation.
An executing transaction cannot reveal its (incomplete) results before it commits.
–Consequently, the net effect is identical to executing all transactions, the one after the
other in some serial order.
4. Durability
– Effects of completed transactions are resilient against failures
Once a transaction commits, the system must guarantee that the results of its operations
will never be lost, in spite of subsequent failures.
SIMPLE MODEL OF A DATABASE
A database is a collection of named data items.
Granularity of data - a field, a record, or a whole disk block (Concepts are independent of
granularity).
Basic operations are read and write:
read_item(X): Reads a database item named X into a program variable. To simplify our
notation, we assume that the program variable is also named X.
write_item(X): Writes the value of program variable X into the database item named X.
READ AND WRITE OPERATIONS:
Basic unit of data transfer from the disk to the computer main memory is one block. In
general, a data item (what is read or written) will be the field of some record in the database,
although it may be a larger unit such as a record or even a whole block.
read_item(X) command includes the following steps:
1. Find the address of the disk block that contains item X.
2. Copy that disk block into a buffer in main memory (if that disk block is not already in
some main memory buffer).

3. Copy item X from the buffer to the program variable named X.
write_item(X) command includes the following steps:
1. Find the address of the disk block that contains item X.
2. Copy that disk block into a buffer in main memory (if that disk block is not already in
some main memory buffer).
3. Copy item X from the program variable named X into its correct location in the buffer.
4. Store the updated block from the buffer back to disk (either immediately or at some later
point in time).

TRANSACTION STATES
1. Active state
2. Partially committed state
3. Committed state
4. Failed state
5. Terminated State

No comments:

Post a Comment