10 1 Chapter 10 Transaction Management and Concurrency Control Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel.

Slides:



Advertisements
Similar presentations
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 16.
Advertisements

Lecture 11 Recoverability. 2 Serializability identifies schedules that maintain database consistency, assuming no transaction fails. Could also examine.
Database Systems, 8 th Edition Concurrency Control with Time Stamping Methods Assigns global unique time stamp to each transaction Produces explicit.
Transaction Management and Concurrency Control
Transaction Management and Concurrency Control
Transaction Management and Concurrency Control
Transaction Management and Concurrency Control
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 10 Transaction Management and Concurrency Control.
Chapter 17: Transaction Management
What is a Transaction? Logical unit of work
Transaction Management
DAVID M. KROENKE’S DATABASE PROCESSING, 10th Edition © 2006 Pearson Prentice Hall 8-1 COS 346 Day 18.
Chapter 9 Transaction Management and Concurrency Control
9 Chapter 9 Transaction Management and Concurrency Control Hachim Haddouti.
Database Administration Part 1 Chapter Six CSCI260 Database Applications.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 10 Transaction Management and Concurrency Control.
Transaction Management and Concurrency Control
Transaction Management Chapter 9. What is a Transaction? A logical unit of work on a database A logical unit of work on a database An entire program An.
Client/Server Databases and the Oracle 10g Relational Database
Multi-user Database Processing Architectures Architectures Transactions Transactions Security Security Administration Administration.
1 Transaction Management Overview Chapter Transactions  Concurrent execution of user programs is essential for good DBMS performance.  Because.
Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Chapter 18.
1 Transactions BUAD/American University Transactions.
Recovery & Concurrency Control. What is a Transaction?  A transaction is a logical unit of work that must be either entirely completed or aborted. 
Database Systems: Design, Implementation, and Management Tenth Edition
BIS Database Systems School of Management, Business Information Systems, Assumption University A.Thanop Somprasong Chapter # 10 Transaction Management.
Chapter 9 Transaction Management and Concurrency Control Database Systems: Design, Implementation and Management Peter Rob & Carlos Coronel.
Chapterb19 Transaction Management Transaction: An action, or series of actions, carried out by a single user or application program, which reads or updates.
Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke1 Transaction Management Overview Lecture 21 Ramakrishnan - Chapter 18.
ITEC 3220M Using and Designing Database Systems Instructor: Prof. Z. Yang Course Website: 3220m.htm
Lecture 12 Recoverability and failure. 2 Optimistic Techniques Based on assumption that conflict is rare and more efficient to let transactions proceed.
Database Systems/COMP4910/Spring05/Melikyan1 Transaction Management Overview Unit 2 Chapter 16.
1 Chapter 20 Transaction Management Transparencies Last Updated: 17 th March 2011 By M. Arief
1 Transaction Management Overview Chapter Transactions  Concurrent execution of user programs is essential for good DBMS performance.  Because.
Ch 10: Transaction Management and Concurrent Control.
1 IT420: Database Management and Organization Session Control Managing Multi-user Databases 24 March 2006 Adina Crăiniceanu
Chapter 9 Transaction Management and Concurrency Control Database Systems: Design, Implementation and Management Peter Rob & Carlos Coronel.
11/7/2012ISC329 Isabelle Bichindaritz1 Transaction Management & Concurrency Control.
© 2002 by Prentice Hall 1 Database Administration David M. Kroenke Database Concepts 1e Chapter 6 6.
II.I Selected Database Issues: 2 - Transaction ManagementSlide 1/20 1 II. Selected Database Issues Part 2: Transaction Management Lecture 4 Lecturer: Chris.
Chapter 20 Transaction Management Thomas Connolly, Carolyn Begg, Database System, A Practical Approach to Design Implementation and Management, 4 th Edition,
Transaction Management Transparencies. ©Pearson Education 2009 Chapter 14 - Objectives Function and importance of transactions. Properties of transactions.
Transaction Processing Concepts
ITEC 3220A Using and Designing Database Systems Instructor: Gordon Turpin Course Website: Office: CSEB3020.
1 Advanced Database Concepts Transaction Management and Concurrency Control.
Overview of Transaction Management
Transaction Management and Concurrent Control
9 1 Chapter 9_B Concurrency Control Database Systems: Design, Implementation, and Management, Rob and Coronel.
NOEA/IT - FEN: Databases/Transactions1 Transactions ACID Concurrency Control.
10 1 Chapter 10_B Concurrency Control Database Systems: Design, Implementation, and Management, Rob and Coronel.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 10 Transaction Management and Concurrency Control.
10 Transaction Management and Concurrency Control MIS 304 Winter 2005.
©Bob Godfrey, 2002, 2005 Lecture 17: Transaction Integrity and Concurrency BSA206 Database Management Systems.
3 Database Systems: Design, Implementation, and Management CHAPTER 9 Transaction Management and Concurrency Control.
10 1 Chapter 10 - A Transaction Management Database Systems: Design, Implementation, and Management, Rob and Coronel.
ITEC 3220M Using and Designing Database Systems Instructor: Prof. Z.Yang Course Website: c3220m.htm Office: TEL.
18 September 2008CIS 340 # 1 Last Covered (almost)(almost) Variety of middleware mechanisms Gain? Enable n-tier architectures while not necessarily using.
Chapter 13 Managing Transactions and Concurrency Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition.
Transactions and Concurrency Control. 2 What is a Transaction?  Any action that reads from and/or writes to a database may consist of  Simple SELECT.
9 1 Chapter 9 Transaction Management and Concurrency Control Database Systems: Design, Implementation, and Management, Sixth Edition, Rob and Coronel.
SYSTEMS IMPLEMENTATION TECHNIQUES TRANSACTION PROCESSING DATABASE RECOVERY DATABASE SECURITY CONCURRENCY CONTROL.
Transaction Management and Concurrency Control
Transaction Management and Concurrency Control
Transaction Management
Transaction Properties
Chapter 10 Transaction Management and Concurrency Control
Chapter 10 Transaction Management and Concurrency Control
Introduction of Week 13 Return assignment 11-1 and 3-1-5
Transactions, Properties of Transactions
Presentation transcript:

10 1 Chapter 10 Transaction Management and Concurrency Control Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel

10 2 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel In this chapter, you will learn: What a database transaction is and what its properties are What concurrency control is and what role it plays in maintaining the database’s integrity What locking methods are and how they work How stamping methods are used for concurrency control

10 3 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel In this chapter, you will learn (continued): How optimistic methods are used for concurrency control How database recovery management is used to maintain database integrity

10 4 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel 10.1 What is a Transaction?

10 5 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel What is a Transaction? (continued) Any action that reads from and/or writes to a database may consist of: –Simple SELECT statement to generate list of table contents –Series of related UPDATE statements to change values of attributes in various tables –Series of INSERT statements to add rows to one or more tables –Combination of SELECT, UPDATE, and INSERT statements

10 6 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel What is a Transaction? (continued) Transaction is logical unit of work that must be either entirely completed or aborted Successful transaction changes database from one consistent state to another –One in which all data integrity constraints are satisfied Most real-world database transactions are formed by two or more database requests –A request is equivalent of a single SQL statement in an application program or transaction

10 7 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Evaluating Transaction Results Not all transactions update database SQL code represents a transaction because database was accessed Improper or incomplete transactions can have devastating effect on database integrity –Some DBMSs provide means by which user can define enforceable constraints –Other integrity rules are enforced automatically by the DBMS No semantic checking

10 8 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Example Transaction INSERT INTO INVOICE VALUES (1009, 10016, ’18-JAN-2006’, , 20.56, , ‘cred’, 0.00, ) INSERT INTO LINE VALUES (1009, 1, ’89-WRE-Q’,1,256.99, ) UPDATE PRODUCT SET PROD_QOH=PROD_QOH – 1 WHERE PROD_CODE=’89-WRE-Q’ UPDATE CUSTOMER SET CUS_BALANCE = CUS_BALANCE WHERE CUS_NUMBER=10016 INSERT INTO ACCT_TRANSACTION VALUES (10007, ’18- Jan-06’, 10016, ‘charge’, ) COMMIT

10 9 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Evaluating Transaction Results (continued) Figure 9.2

10 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Transaction Properties Atomicity –Requires that all operations (SQL requests) of a transaction be completed. If not, the transaction is aborted. Consistency –Indicates the permanence of database’s consistent state

10 11 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Transaction Properties (continued) Isolation –Data used during execution of a transaction cannot be used by second transaction until first one is completed Durability –Once transaction changes are done (committed), they cannot be undone or lost, even in the event of a system failure Serializability –Ensures that concurrent execution of several transactions yields consistent results

10 12 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Transaction Management with SQL ANSI has defined standards that govern SQL database transactions Transaction support is provided by two SQL statements: COMMIT and ROLLBACK

10 13 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Transaction Management with SQL (continued) ANSI standards require that, when a transaction sequence is initiated by a user or an application program, it must continue through all succeeding SQL statements until one of four events occurs –COMMIT statement is reached –ROLLBACK statement is reached –End of program is reached –Program is abnormally terminated

10 14 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel The Transaction Log Transaction log stores: –A record for the beginning of transaction –For each transaction component (SQL statement): Type of operation being performed (update, delete, insert) Names of objects affected by transaction “Before” and “after” values for updated fields Pointers to previous and next transaction log entries for the same transaction –Ending (COMMIT) of the transaction

10 15 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel The Transaction Log (continued)

10 16 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel 10.2 Concurrency Control Coordination of simultaneous transaction execution in a multiprocessing database system Objective is to ensure serializability of transactions in a multiuser database environment

10 17 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Concurrency Control (continued) Simultaneous execution of transactions over a shared database can create several data integrity and consistency problems –Lost updates –Uncommitted data –Inconsistent retrievals

10 18 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lost Updates

10 19 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lost Updates (continued)

10 20 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Uncommitted Data

10 21 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Uncommitted Data (continued)

10 22 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Inconsistent Retrievals

10 23 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Inconsistent Retrievals (continued)

10 24 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Inconsistent Retrievals (continued)

10 25 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel The Scheduler As long as two transactions access unrelated data, there is no conflict in the execution order is irrelevant to the final outcome. The scheduler is a special DBMS program –Purpose is to establish order of operations within which concurrent transactions are executed Interleaves execution of database operations to ensure serializability and isolation of transactions

10 26 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel The Scheduler (continued) Bases its actions on concurrency control algorithms Ensures computer’s central processing unit (CPU) is used efficiently –First-come first-served scheduling wastes processing time when CPU waits for READ or WRITE operation Facilitates data isolation to ensure that two transactions do not update same data element at same time

10 27 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel The Scheduler (continued) for the same data unit

10 28 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel 10.3 Concurrency Control with Locking Methods Lock –Guarantees exclusive use of a data item to a current transaction –Required to prevent another transaction from reading inconsistent data Lock manager –Responsible for assigning and policing the locks used by transactions

10 29 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lock Granularity Indicates level of lock use Locking can take place at following levels: –Database –Table –Page –Row –Field (attribute)

10 30 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lock Granularity (continued) Database-level lock –Entire database is locked Table-level lock –Entire table is locked Page-level lock –Entire diskpage is locked

10 31 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lock Granularity (continued) Row-level lock –Allows concurrent transactions to access different rows of same table, even if rows are located on same page Field-level lock –Allows concurrent transactions to access same row, as long as they require use of different fields (attributes) within that row

10 32 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lock Granularity (continued)

10 33 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lock Granularity (continued)

10 34 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lock Granularity (continued)

10 35 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lock Granularity (continued)

10 36 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lock Types Binary lock –Has only two states: locked (1) or unlocked (0) –Every transaction requires a lock and unlock operation for each accessed data item, which are automatically managed by the DBMS Exclusive lock –Access is specifically reserved for transaction that locked object –Mutual exclusive rule –Must be used when potential for conflict exists Shared lock –Concurrent transactions are granted. Read access on basis of a common lock

10 37 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Lock Types (continued)

10 38 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Two-Phase Locking to Ensure Serializability Defines how transactions acquire ( 得到 ) and relinquish ( 放棄 ) locks Guarantees serializability, but it does not prevent deadlocks –Growing phase - Transaction acquires all required locks without unlocking any data –Shrinking phase - Transaction releases all locks and cannot obtain any new lock

10 39 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Two-Phase Locking to Ensure Serializability (continued) Governed by the following rules: –Two transactions cannot have conflicting locks –No unlock operation can precede a lock operation in the same transaction –No data are affected until all locks are obtained—that is, until transaction is in its locked point

10 40 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Two-Phase Locking to Ensure Serializability (continued)

10 41 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Deadlocks Condition that occurs when two transactions wait for each other to unlock data Possible only if one of the transactions wants to obtain an exclusive lock on a data item –No deadlock condition can exist among shared locks

10 42 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Deadlocks (continued) Control through: –Prevention –Detection –Avoidance

10 43 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Deadlocks (continued)

10 44 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel 10.4 Concurrency Control with Time Stamping Methods Assigns global unique time stamp to each transaction Produces explicit order in which transactions are submitted to DBMS Uniqueness –Ensures that no equal time stamp values can exist Monotonicity –Ensures that time stamp values always increase

10 45 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Wait/Die and Wound/Wait Schemes Wait/die –Older requesting transaction waits –Younger requesting transaction is rolled back and rescheduled Wound/wait –Older requesting transaction preempts (rolls back) younger transaction and reschedules it –Younger requesting transaction waits

10 46 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Wait/Die and Wound/Wait Schemes (continued)

10 47 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel 10.5 Concurrency Control with Optimistic Methods Optimistic approach –Based on assumption that majority of database operations do not conflict –Does not require locking or time stamping techniques –Transaction is executed without restrictions until it is committed –Phases are read, validation, and write

10 48 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel 10.6 Database Recovery Management Database recovery –Restores database from given state, usually inconsistent, to previously consistent state –Based on atomic transaction property All portions of transaction must be treated as single logical unit of work, so all operations must be applied and completed to produce consistent database –If transaction operation cannot be completed, transaction must be aborted, and any changes to database must be rolled back (undone)

10 49 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Concepts that Affect Transaction Recovery Write-ahead protocol Redundant transaction logs Database buffers Database checkpoints

10 50 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Transaction Recovery Makes use of deferred-write and write- through techniques Deferred write –Transaction operations do not immediately update physical database –Only transaction log is updated –Database is physically updated only after transaction reaches its commit point using transaction log information

10 51 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Transaction Recovery (continued) Write-through or immediate-update –Database is immediately updated by transaction operations during transaction’s execution, even before transaction reaches its commit point Recovery process for write-through 1.Identify the last checkpoint 2.Do nothing for transactions started and committed before the last checkpoint 3.Redo transactions committed after the last checkpoint 4.Undo transactions that had a ROLLBACK operation after the last checkpoint or that was left active before the failure occurred

10 52 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Transaction Recovery (continued) Recovery process for deferred-write 1.Identify the last checkpoint 2.Do nothing for transactions started and committed before the last checkpoint 3.Redo transactions committed after the last checkpoint 4.Any other transactions will be ignored

10 53 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Transaction Recovery (continued)

10 54 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Summary Transaction –Sequence of database operations that access database –Represents real-world events –Must be logical unit of work No portion of transaction can exist by itself –Takes database from one consistent state to another One in which all data integrity constraints are satisfied

10 55 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Summary (continued) Transactions have five main properties: atomicity, consistency, isolation, durability, and serializability SQL provides support for transactions through the use of two statements: COMMIT and ROLLBACK SQL transactions are formed by several SQL statements or database requests

10 56 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Summary (continued) Transaction log keeps track of all transactions that modify database Concurrency control coordinates simultaneous execution of transactions Scheduler is responsible for establishing order in which concurrent transaction operations are executed

10 57 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Summary (continued) Lock guarantees unique access to a data item by transaction Two types of locks can be used in database systems: binary locks and shared/exclusive locks Serializability of schedules is guaranteed through the use of two-phase locking

10 58 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Summary (continued) When two or more transactions wait indefinitely for each other to release lock, they are in deadlock, or deadly embrace Three deadlock control techniques: prevention, detection, and avoidance

10 59 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Summary (continued) Concurrency control with time stamping methods assigns unique time stamp to each transaction and schedules execution of conflicting transactions in time stamp order

10 60 Database Systems: Design, Implementation, & Management, 7 th Edition, Rob & Coronel Summary (continued) Concurrency control with optimistic methods assumes that the majority of database transactions do not conflict and that transactions are executed concurrently, using private copies of the data Database recovery restores database from given state to previous consistent state