SlideShare uma empresa Scribd logo
1 de 47
Chapter 15: Transactions




        Database System Concepts, 1st Ed.
©VNS InfoSolutions Private Limited, Varanasi(UP), India 221002
        See www.vnsispl.com for conditions on re-use
Chapter 15: Transactions
              s Transaction Concept
              s Transaction State
              s Concurrent Executions
              s Serializability
              s Recoverability
              s Implementation of Isolation
              s Transaction Definition in SQL
              s Testing for Serializability.




Database System Concepts – 1 st Ed.             15.2 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Transaction Concept
              s A transaction is a unit of program execution that accesses and
                   possibly updates various data items.
              s A transaction must see a consistent database.
              s During transaction execution the database may be temporarily
                   inconsistent.
              s When the transaction completes successfully (is committed), the
                   database must be consistent.
              s After a transaction commits, the changes it has made to the
                   database persist, even if there are system failures.
              s Multiple transactions can execute in parallel.
              s Two main issues to deal with:
                     q   Failures of various kinds, such as hardware failures and system
                         crashes
                     q   Concurrent execution of multiple transactions



Database System Concepts – 1 st Ed.                 15.3 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
ACID Properties
              A transaction is a unit of program execution that accesses and possibly
              updates various data items.To preserve the integrity of data the database
              system must ensure:
              s Atomicity. Either all operations of the transaction are properly
                   reflected in the database or none are.
              s Consistency. Execution of a transaction in isolation preserves the
                   consistency of the database.
              s Isolation. Although multiple transactions may execute concurrently,
                   each transaction must be unaware of other concurrently executing
                   transactions. Intermediate transaction results must be hidden from other
                   concurrently executed transactions.
                     q   That is, for every pair of transactions Ti and Tj, it appears to Ti that
                         either Tj, finished execution before Ti started, or Tj started execution
                         after Ti finished.
              s Durability. After a transaction completes successfully, the changes it
                   has made to the database persist, even if there are system failures.

Database System Concepts – 1 st Ed.                   15.4 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Example of Fund Transfer
              s Transaction to transfer $50 from account A to account B:
                     1. read(A)
                     2. A := A – 50
                     3. write(A)
                     4. read(B)
                     5. B := B + 50
                     6. write(B)
              s Atomicity requirement — if the transaction fails after step 3 and
                   before step 6, the system should ensure that its updates are not
                   reflected in the database, else an inconsistency will result.
              s Consistency requirement – the sum of A and B is unchanged by
                   the execution of the transaction.




Database System Concepts – 1 st Ed.                15.5 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Example of Fund Transfer (Cont.)
              s Isolation requirement — if between steps 3 and 6, another
                   transaction is allowed to access the partially updated database, it will
                   see an inconsistent database (the sum A + B will be less than it
                   should be).
                     q   Isolation can be ensured trivially by running transactions serially,
                         that is one after the other.
                     q   However, executing multiple transactions concurrently has
                         significant benefits, as we will see later.
              s Durability requirement — once the user has been notified that the
                   transaction has completed (i.e., the transfer of the $50 has taken
                   place), the updates to the database by the transaction must persist
                   despite failures.




Database System Concepts – 1 st Ed.                  15.6 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Transaction State
              s Active – the initial state; the transaction stays in this state while it is
                   executing
              s Partially committed – after the final statement has been
                   executed.
              s Failed -- after the discovery that normal execution can no longer
                   proceed.
              s Aborted – after the transaction has been rolled back and the
                   database restored to its state prior to the start of the transaction.
                   Two options after it has been aborted:
                     q   restart the transaction; can be done only if no internal
                         logical error
                     q   kill the transaction
              s Committed – after successful completion.




Database System Concepts – 1 st Ed.                  15.7 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Transaction State (Cont.)




Database System Concepts – 1 st Ed.      15.8 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Implementation of Atomicity and
                           Durability
              s The recovery-management component of a database system
                   implements the support for atomicity and durability.
              s The shadow-database scheme:
                     q   assume that only one transaction is active at a time.
                     q   a pointer called db_pointer always points to the current
                         consistent copy of the database.
                     q   all updates are made on a shadow copy of the database, and
                         db_pointer is made to point to the updated shadow copy
                         only after the transaction reaches partial commit and all
                         updated pages have been flushed to disk.
                     q   in case transaction fails, old consistent copy pointed to by
                         db_pointer can be used, and the shadow copy can be
                         deleted.




Database System Concepts – 1 st Ed.                   15.9 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Implementation of Atomicity and Durability
                                  (Cont.)
            The shadow-database scheme:




              s Assumes disks do not fail
              s Useful for text editors, but
                    q
                   extremely inefficient for large databases (why?)
                q Does not handle concurrent transactions
              s Will study better schemes in Chapter 17.

Database System Concepts – 1 st Ed.            15.10 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Concurrent Executions
              s Multiple transactions are allowed to run concurrently in the system.
                   Advantages are:
                     q   increased processor and disk utilization, leading to
                         better transaction throughput: one transaction can be using the
                         CPU while another is reading from or writing to the disk
                     q   reduced average response time for transactions: short
                         transactions need not wait behind long ones.
              s Concurrency control schemes – mechanisms to achieve
                   isolation; that is, to control the interaction among the concurrent
                   transactions in order to prevent them from destroying the
                   consistency of the database
                     q   Will study in Chapter 16, after studying notion of correctness of
                         concurrent executions.




Database System Concepts – 1 st Ed.                  15.11 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Schedules
              s Schedule – a sequences of instructions that specify the chronological
                   order in which instructions of concurrent transactions are executed
                     q   a schedule for a set of transactions must consist of all instructions
                         of those transactions
                     q   must preserve the order in which the instructions appear in each
                         individual transaction.
              s A transaction that successfully completes its execution will have a
                   commit instructions as the last statement (will be omitted if it is obvious)
              s A transaction that fails to successfully complete its execution will have
                   an abort instructions as the last statement (will be omitted if it is
                   obvious)




Database System Concepts – 1 st Ed.                  15.12 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Schedule 1
              s Let T1 transfer $50 from A to B, and T2 transfer 10% of the
                balance from A to B.
              s A serial schedule in which T1 is followed by T2:




Database System Concepts – 1 st Ed.          15.13 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Schedule 2
            • A serial schedule where T2 is followed by T1




Database System Concepts – 1 st Ed.          15.14 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Schedule 3
              s Let T1 and T2 be the transactions defined previously. The
                   following schedule is not a serial schedule, but it is equivalent
                   to Schedule 1.




                In Schedules 1, 2 and 3, the sum A + B is preserved.

Database System Concepts – 1 st Ed.                 15.15 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Schedule 4
              s The following concurrent schedule does not preserve the
                   value of (A + B).




Database System Concepts – 1 st Ed.           15.16 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Serializability
              s Basic Assumption – Each transaction preserves database
                   consistency.
              s Thus serial execution of a set of transactions preserves database
                   consistency.
              s A (possibly concurrent) schedule is serializable if it is equivalent to a
                   serial schedule. Different forms of schedule equivalence give rise to
                   the notions of:
                     1. conflict serializability
                     2. view serializability
              s We ignore operations other than read and write instructions, and
                   we assume that transactions may perform arbitrary computations on
                   data in local buffers in between reads and writes. Our simplified
                   schedules consist of only read and write instructions.




Database System Concepts – 1 st Ed.                15.17 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Conflicting Instructions
              s Instructions li and lj of transactions Ti and Tj respectively, conflict if
                   and only if there exists some item Q accessed by both li and lj, and at
                   least one of these instructions wrote Q.
                      1. li = read(Q), lj = read(Q).      li and lj don’t conflict.
                      2. li = read(Q), lj = write(Q).      They conflict.
                      3. li = write(Q), lj = read(Q).      They conflict
                      4. li = write(Q), lj = write(Q).     They conflict
              s Intuitively, a conflict between li and lj forces a (logical) temporal order
                   between them.
                     q   If li and lj are consecutive in a schedule and they do not conflict,
                         their results would remain the same even if they had been
                         interchanged in the schedule.




Database System Concepts – 1 st Ed.                      15.18 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Conflict Serializability
              s If a schedule S can be transformed into a schedule S´ by a series of
                   swaps of non-conflicting instructions, we say that S and S´ are
                   conflict equivalent.
              s We say that a schedule S is conflict serializable if it is conflict
                   equivalent to a serial schedule




Database System Concepts – 1 st Ed.                  15.19 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Conflict Serializability (Cont.)
              s Schedule 3 can be transformed into Schedule 6, a serial
                   schedule where T2 follows T1, by series of swaps of non-
                   conflicting instructions.
                     q   Therefore Schedule 3 is conflict serializable.




                         Schedule 3                                    Schedule 6
Database System Concepts – 1 st Ed.               15.20 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Conflict Serializability (Cont.)

              s Example of a schedule that is not conflict serializable:




              s We are unable to swap instructions in the above schedule to obtain
                   either the serial schedule < T3, T4 >, or the serial schedule < T4, T3 >.




Database System Concepts – 1 st Ed.                 15.21 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
View Serializability
              s Let S and S´ be two schedules with the same set of transactions.
                   S and S´ are view equivalent if the following three conditions are
                   met:
                     1. For each data item Q, if transaction Ti reads the initial value of
                        Q in schedule S, then transaction Ti must, in schedule S´, also
                        read the initial value of Q.
                     2. For each data item Q if transaction Ti executes read(Q) in
                        schedule S, and that value was produced by transaction Tj (if
                        any), then transaction Ti must in schedule S´ also read the
                        value of Q that was produced by transaction Tj .
                     3. For each data item Q, the transaction (if any) that performs the
                        final write(Q) operation in schedule S must perform the final
                        write(Q) operation in schedule S´.
              As can be seen, view equivalence is also based purely on reads and
                 writes alone.



Database System Concepts – 1 st Ed.                 15.22 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
View Serializability (Cont.)
              s A schedule S is view serializable it is view equivalent to a serial
                   schedule.
              s Every conflict serializable schedule is also view serializable.
              s Below is a schedule which is view-serializable but not conflict
                   serializable.




              s What serial schedule is above equivalent to?
              s Every view serializable schedule that is not conflict serializable has
                   blind writes.



Database System Concepts – 1 st Ed.              15.23 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Other Notions of Serializability
              s The schedule below produces same outcome as the serial
                   schedule < T1, T5 >, yet is not conflict equivalent or view
                   equivalent to it.




              s Determining such equivalence requires analysis of operations
                   other than read and write.

Database System Concepts – 1 st Ed.                 15.24 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Testing for Serializability
              s Consider some schedule of a set of transactions T1, T2, ..., Tn
              s Precedence graph — a direct graph where the vertices are
                   the transactions (names).
              s We draw an arc from Ti to Tj if the two transaction conflict,
                   and Ti accessed the data item on which the conflict arose
                   earlier.
              s We may label the arc by the item that was accessed.
              s Example 1

                                                x




                                                y


Database System Concepts – 1 st Ed.                 15.25 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Example Schedule (Schedule A) + Precedence
                                  Graph

                    T1             T2         T3         T4             T5
                                read(X)
                read(Y)
                read(Z)
                                                                     read(V)
                                                                     read(W)         T1                         T2
                                                                     read(W)
                                read(Y)
                                write(Y)
                                           write(Z)
                read(U)
                                                      read(Y)
                                                                                        T3                       T4
                                                      write(Y)
                                                      read(Z)
                                                      write(Z)
                read(U)
                write(U)




Database System Concepts – 1 st Ed.                   15.26 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Test for Conflict Serializability
            s A schedule is conflict serializable if and only
                 if its precedence graph is acyclic.
            s Cycle-detection algorithms exist which take
                 order n2 time, where n is the number of
                 vertices in the graph.
                   q   (Better algorithms take order n + e
                       where e is the number of edges.)
            s If precedence graph is acyclic, the
                 serializability order can be obtained by a
                 topological sorting of the graph.
                   q    This is a linear order consistent with the
                       partial order of the graph.
                   q   For example, a serializability order for
                       Schedule A would be
                       T5 → T 1 → T3 → T 2 → T4
                            Are there others?

Database System Concepts – 1 st Ed.                  15.27 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Test for View Serializability
              s The precedence graph test for conflict serializability cannot be used
                   directly to test for view serializability.
                     q   Extension to test for view serializability has cost exponential in the
                         size of the precedence graph.
              s The problem of checking if a schedule is view serializable falls in the
                   class of NP-complete problems.
                     q    Thus existence of an efficient algorithm is extremely unlikely.
              s However practical algorithms that just check some sufficient
                   conditions for view serializability can still be used.




Database System Concepts – 1 st Ed.                    15.28 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Recoverable Schedules
              Need to address the effect of transaction failures on concurrently
              running transactions.
              s Recoverable schedule — if a transaction Tj reads a data item
                   previously written by a transaction Ti , then the commit operation of Ti
                   appears before the commit operation of Tj.
              s The following schedule (Schedule 11) is not recoverable if T9 commits
                   immediately after the read




              s If T8 should abort, T9 would have read (and possibly shown to the user)
                   an inconsistent database state. Hence, database must ensure that
                   schedules are recoverable.


Database System Concepts – 1 st Ed.                15.29 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Cascading Rollbacks
              s Cascading rollback – a single transaction failure leads to a
                   series of transaction rollbacks. Consider the following schedule
                   where none of the transactions has yet committed (so the
                   schedule is recoverable)




                   If T10 fails, T11 and T12 must also be rolled back.
              s Can lead to the undoing of a significant amount of work




Database System Concepts – 1 st Ed.                  15.30 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Cascadeless Schedules
              s Cascadeless schedules — cascading rollbacks cannot occur; for
                   each pair of transactions Ti and Tj such that Tj reads a data item
                   previously written by Ti, the commit operation of Ti appears before the
                   read operation of Tj.
              s Every cascadeless schedule is also recoverable
              s It is desirable to restrict the schedules to those that are cascadeless




Database System Concepts – 1 st Ed.               15.31 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Concurrency Control
              s A database must provide a mechanism that will ensure that all possible
                   schedules are
                     q   either conflict or view serializable, and
                     q   are recoverable and preferably cascadeless
              s A policy in which only one transaction can execute at a time generates
                   serial schedules, but provides a poor degree of concurrency
                     q   Are serial schedules recoverable/cascadeless?
              s Testing a schedule for serializability after it has executed is a little too
                   late!
              s Goal – to develop concurrency control protocols that will assure
                   serializability.




Database System Concepts – 1 st Ed.                   15.32 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Concurrency Control vs. Serializability
                                  Tests


              s Concurrency-control protocols allow concurrent schedules, but ensure
                   that the schedules are conflict/view serializable, and are recoverable
                   and cascadeless.
              s Concurrency control protocols generally do not examine the
                   precedence graph as it is being created
                     q   Instead a protocol imposes a discipline that avoids nonseralizable
                         schedules.
                     q   We study such protocols in Chapter 16.
              s Different concurrency control protocols provide different tradeoffs
                   between the amount of concurrency they allow and the amount of
                   overhead that they incur.
              s Tests for serializability help us understand why a concurrency control
                   protocol is correct.




Database System Concepts – 1 st Ed.                 15.33 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Weak Levels of Consistency
              s Some applications are willing to live with weak levels of consistency,
                   allowing schedules that are not serializable
                     q   E.g. a read-only transaction that wants to get an approximate total
                         balance of all accounts
                     q   E.g. database statistics computed for query optimization can be
                         approximate (why?)
                     q   Such transactions need not be serializable with respect to other
                         transactions
              s Tradeoff accuracy for performance




Database System Concepts – 1 st Ed.                 15.34 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Levels of Consistency in SQL-92
              s Serializable — default
              s Repeatable read — only committed records to be read, repeated
                   reads of same record must return same value. However, a
                   transaction may not be serializable – it may find some records
                   inserted by a transaction but not find others.
              s Read committed — only committed records can be read, but
                   successive reads of record may return different (but committed)
                   values.
              s Read uncommitted — even uncommitted records may be read.


         s Lower degrees of consistency useful for gathering approximate
              information about the database




Database System Concepts – 1 st Ed.               15.35 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Transaction Definition in SQL
              s Data manipulation language must include a construct for
                   specifying the set of actions that comprise a transaction.
              s In SQL, a transaction begins implicitly.
              s A transaction in SQL ends by:
                     q   Commit work commits current transaction and begins a new
                         one.
                     q   Rollback work causes current transaction to abort.
              s Levels of consistency specified by SQL-92:
                     q   Serializable — default
                     q   Repeatable read
                     q   Read committed
                     q   Read uncommitted




Database System Concepts – 1 st Ed.                15.36 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
End of Chapter




        Database System Concepts, 1st Ed.
©VNS InfoSolutions Private Limited, Varanasi(UP), India 221002
        See www.vnsispl.com for conditions on re-use
Database System Concepts – 1 st Ed.   15.38 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Database System Concepts – 1 st Ed.   15.39 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Schedule 7




Database System Concepts – 1 st Ed.      15.40 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Precedence Graph for
                      (a) Schedule 1 and (b) Schedule 2




Database System Concepts – 1 st Ed.   15.41 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Illustration of Topological Sorting




Database System Concepts – 1 st Ed.   15.42 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Precedence Graph




Database System Concepts – 1 st Ed.         15.43 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
fig. 15.21




Database System Concepts – 1 st Ed.      15.44 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Implementation of Isolation
              s Schedules must be conflict or view serializable, and recoverable,
                   for the sake of database consistency, and preferably cascadeless.
              s A policy in which only one transaction can execute at a time
                   generates serial schedules, but provides a poor degree of
                   concurrency.
              s Concurrency-control schemes tradeoff between the amount of
                   concurrency they allow and the amount of overhead that they
                   incur.
              s Some schemes allow only conflict-serializable schedules to be
                   generated, while others allow view-serializable schedules that are
                   not conflict-serializable.




Database System Concepts – 1 st Ed.               15.45 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Figure 15.6




Database System Concepts – 1 st Ed.       15.46 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Figure 15.12




Database System Concepts – 1 st Ed.       15.47 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100

Mais conteúdo relacionado

Destaque

database management system Chapter 5
database management system Chapter 5database management system Chapter 5
database management system Chapter 5Mohamad Syazwan
 
Svetlin Nakov - Database Transactions
Svetlin Nakov - Database TransactionsSvetlin Nakov - Database Transactions
Svetlin Nakov - Database TransactionsSvetlin Nakov
 
Session 9 Tp9
Session 9 Tp9Session 9 Tp9
Session 9 Tp9phanleson
 
Dbms sixth chapter_part-1_2011
Dbms sixth chapter_part-1_2011Dbms sixth chapter_part-1_2011
Dbms sixth chapter_part-1_2011sumit_study
 
Chapter 5 Database Transaction Management
Chapter 5 Database Transaction ManagementChapter 5 Database Transaction Management
Chapter 5 Database Transaction ManagementEddyzulham Mahluzydde
 
Transaction & Concurrency Control
Transaction & Concurrency ControlTransaction & Concurrency Control
Transaction & Concurrency ControlRavimuthurajan
 
Database Transactions and SQL Server Concurrency
Database Transactions and SQL Server ConcurrencyDatabase Transactions and SQL Server Concurrency
Database Transactions and SQL Server ConcurrencyBoris Hristov
 
DBMS-chap 2-Concurrency Control
DBMS-chap 2-Concurrency ControlDBMS-chap 2-Concurrency Control
DBMS-chap 2-Concurrency ControlMukesh Tekwani
 
Transaction slide
Transaction slideTransaction slide
Transaction slideshawon roy
 
Transaction Management - Lecture 11 - Introduction to Databases (1007156ANR)
Transaction Management - Lecture 11 - Introduction to Databases (1007156ANR)Transaction Management - Lecture 11 - Introduction to Databases (1007156ANR)
Transaction Management - Lecture 11 - Introduction to Databases (1007156ANR)Beat Signer
 
Transaction management
Transaction managementTransaction management
Transaction managementrenuka_a
 

Destaque (13)

database management system Chapter 5
database management system Chapter 5database management system Chapter 5
database management system Chapter 5
 
Svetlin Nakov - Database Transactions
Svetlin Nakov - Database TransactionsSvetlin Nakov - Database Transactions
Svetlin Nakov - Database Transactions
 
Session 9 Tp9
Session 9 Tp9Session 9 Tp9
Session 9 Tp9
 
Dbms sixth chapter_part-1_2011
Dbms sixth chapter_part-1_2011Dbms sixth chapter_part-1_2011
Dbms sixth chapter_part-1_2011
 
Acid properties
Acid propertiesAcid properties
Acid properties
 
Chapter 5 Database Transaction Management
Chapter 5 Database Transaction ManagementChapter 5 Database Transaction Management
Chapter 5 Database Transaction Management
 
Transaction & Concurrency Control
Transaction & Concurrency ControlTransaction & Concurrency Control
Transaction & Concurrency Control
 
Database Transactions and SQL Server Concurrency
Database Transactions and SQL Server ConcurrencyDatabase Transactions and SQL Server Concurrency
Database Transactions and SQL Server Concurrency
 
DBMS-chap 2-Concurrency Control
DBMS-chap 2-Concurrency ControlDBMS-chap 2-Concurrency Control
DBMS-chap 2-Concurrency Control
 
Transaction slide
Transaction slideTransaction slide
Transaction slide
 
Dbms
DbmsDbms
Dbms
 
Transaction Management - Lecture 11 - Introduction to Databases (1007156ANR)
Transaction Management - Lecture 11 - Introduction to Databases (1007156ANR)Transaction Management - Lecture 11 - Introduction to Databases (1007156ANR)
Transaction Management - Lecture 11 - Introduction to Databases (1007156ANR)
 
Transaction management
Transaction managementTransaction management
Transaction management
 

Semelhante a VNSISPL_DBMS_Concepts_ch15

Semelhante a VNSISPL_DBMS_Concepts_ch15 (20)

VNSISPL_DBMS_Concepts_ch16
VNSISPL_DBMS_Concepts_ch16VNSISPL_DBMS_Concepts_ch16
VNSISPL_DBMS_Concepts_ch16
 
DBMS UNIT 4
DBMS UNIT 4DBMS UNIT 4
DBMS UNIT 4
 
Presentation on Transaction
Presentation on TransactionPresentation on Transaction
Presentation on Transaction
 
Ch15
Ch15Ch15
Ch15
 
Database management system chapter15
Database management system chapter15Database management system chapter15
Database management system chapter15
 
Dbms
DbmsDbms
Dbms
 
Job Opportunity
Job OpportunityJob Opportunity
Job Opportunity
 
Vnsispl dbms concepts_ch1
Vnsispl dbms concepts_ch1Vnsispl dbms concepts_ch1
Vnsispl dbms concepts_ch1
 
24. Advanced Transaction Processing in DBMS
24. Advanced Transaction Processing in DBMS24. Advanced Transaction Processing in DBMS
24. Advanced Transaction Processing in DBMS
 
VNSISPL_DBMS_Concepts_ch17
VNSISPL_DBMS_Concepts_ch17VNSISPL_DBMS_Concepts_ch17
VNSISPL_DBMS_Concepts_ch17
 
Transaction management
Transaction managementTransaction management
Transaction management
 
Ch20
Ch20Ch20
Ch20
 
HbaseHivePigbyRohitDubey
HbaseHivePigbyRohitDubeyHbaseHivePigbyRohitDubey
HbaseHivePigbyRohitDubey
 
ch14.ppt
ch14.pptch14.ppt
ch14.ppt
 
DBMS Transcations
DBMS TranscationsDBMS Transcations
DBMS Transcations
 
Chapter 4 u
Chapter 4 uChapter 4 u
Chapter 4 u
 
Soa interview questions (autosaved)
Soa interview questions (autosaved)Soa interview questions (autosaved)
Soa interview questions (autosaved)
 
24904 lecture11
24904 lecture1124904 lecture11
24904 lecture11
 
Soa interview questions
Soa interview questionsSoa interview questions
Soa interview questions
 
Ho20
Ho20Ho20
Ho20
 

Mais de sriprasoon

VNSISPL_DBMS_Concepts_AppB
VNSISPL_DBMS_Concepts_AppBVNSISPL_DBMS_Concepts_AppB
VNSISPL_DBMS_Concepts_AppBsriprasoon
 
VNSISPL_DBMS_Concepts_AppC
VNSISPL_DBMS_Concepts_AppCVNSISPL_DBMS_Concepts_AppC
VNSISPL_DBMS_Concepts_AppCsriprasoon
 
VNSISPL_DBMS_Concepts_appA
VNSISPL_DBMS_Concepts_appAVNSISPL_DBMS_Concepts_appA
VNSISPL_DBMS_Concepts_appAsriprasoon
 
VNSISPL_DBMS_Concepts_ch24
VNSISPL_DBMS_Concepts_ch24VNSISPL_DBMS_Concepts_ch24
VNSISPL_DBMS_Concepts_ch24sriprasoon
 
VNSISPL_DBMS_Concepts_ch22
VNSISPL_DBMS_Concepts_ch22VNSISPL_DBMS_Concepts_ch22
VNSISPL_DBMS_Concepts_ch22sriprasoon
 
VNSISPL_DBMS_Concepts_ch21
VNSISPL_DBMS_Concepts_ch21VNSISPL_DBMS_Concepts_ch21
VNSISPL_DBMS_Concepts_ch21sriprasoon
 
VNSISPL_DBMS_Concepts_ch19
VNSISPL_DBMS_Concepts_ch19VNSISPL_DBMS_Concepts_ch19
VNSISPL_DBMS_Concepts_ch19sriprasoon
 
VNSISPL_DBMS_Concepts_ch18
VNSISPL_DBMS_Concepts_ch18VNSISPL_DBMS_Concepts_ch18
VNSISPL_DBMS_Concepts_ch18sriprasoon
 
VNSISPL_DBMS_Concepts_ch14
VNSISPL_DBMS_Concepts_ch14VNSISPL_DBMS_Concepts_ch14
VNSISPL_DBMS_Concepts_ch14sriprasoon
 
VNSISPL_DBMS_Concepts_ch13
VNSISPL_DBMS_Concepts_ch13VNSISPL_DBMS_Concepts_ch13
VNSISPL_DBMS_Concepts_ch13sriprasoon
 
VNSISPL_DBMS_Concepts_ch12
VNSISPL_DBMS_Concepts_ch12VNSISPL_DBMS_Concepts_ch12
VNSISPL_DBMS_Concepts_ch12sriprasoon
 
VNSISPL_DBMS_Concepts_ch11
VNSISPL_DBMS_Concepts_ch11VNSISPL_DBMS_Concepts_ch11
VNSISPL_DBMS_Concepts_ch11sriprasoon
 
VNSISPL_DBMS_Concepts_ch10
VNSISPL_DBMS_Concepts_ch10VNSISPL_DBMS_Concepts_ch10
VNSISPL_DBMS_Concepts_ch10sriprasoon
 
VNSISPL_DBMS_Concepts_ch9
VNSISPL_DBMS_Concepts_ch9VNSISPL_DBMS_Concepts_ch9
VNSISPL_DBMS_Concepts_ch9sriprasoon
 
VNSISPL_DBMS_Concepts_ch8
VNSISPL_DBMS_Concepts_ch8VNSISPL_DBMS_Concepts_ch8
VNSISPL_DBMS_Concepts_ch8sriprasoon
 
VNSISPL_DBMS_Concepts_ch7
VNSISPL_DBMS_Concepts_ch7VNSISPL_DBMS_Concepts_ch7
VNSISPL_DBMS_Concepts_ch7sriprasoon
 
VNSISPL_DBMS_Concepts_ch6
VNSISPL_DBMS_Concepts_ch6VNSISPL_DBMS_Concepts_ch6
VNSISPL_DBMS_Concepts_ch6sriprasoon
 
VNSISPL_DBMS_Concepts_ch5
VNSISPL_DBMS_Concepts_ch5VNSISPL_DBMS_Concepts_ch5
VNSISPL_DBMS_Concepts_ch5sriprasoon
 
VNSISPL_DBMS_Concepts_ch4
VNSISPL_DBMS_Concepts_ch4VNSISPL_DBMS_Concepts_ch4
VNSISPL_DBMS_Concepts_ch4sriprasoon
 
Vnsispl dbms concepts_ch3
Vnsispl dbms concepts_ch3Vnsispl dbms concepts_ch3
Vnsispl dbms concepts_ch3sriprasoon
 

Mais de sriprasoon (20)

VNSISPL_DBMS_Concepts_AppB
VNSISPL_DBMS_Concepts_AppBVNSISPL_DBMS_Concepts_AppB
VNSISPL_DBMS_Concepts_AppB
 
VNSISPL_DBMS_Concepts_AppC
VNSISPL_DBMS_Concepts_AppCVNSISPL_DBMS_Concepts_AppC
VNSISPL_DBMS_Concepts_AppC
 
VNSISPL_DBMS_Concepts_appA
VNSISPL_DBMS_Concepts_appAVNSISPL_DBMS_Concepts_appA
VNSISPL_DBMS_Concepts_appA
 
VNSISPL_DBMS_Concepts_ch24
VNSISPL_DBMS_Concepts_ch24VNSISPL_DBMS_Concepts_ch24
VNSISPL_DBMS_Concepts_ch24
 
VNSISPL_DBMS_Concepts_ch22
VNSISPL_DBMS_Concepts_ch22VNSISPL_DBMS_Concepts_ch22
VNSISPL_DBMS_Concepts_ch22
 
VNSISPL_DBMS_Concepts_ch21
VNSISPL_DBMS_Concepts_ch21VNSISPL_DBMS_Concepts_ch21
VNSISPL_DBMS_Concepts_ch21
 
VNSISPL_DBMS_Concepts_ch19
VNSISPL_DBMS_Concepts_ch19VNSISPL_DBMS_Concepts_ch19
VNSISPL_DBMS_Concepts_ch19
 
VNSISPL_DBMS_Concepts_ch18
VNSISPL_DBMS_Concepts_ch18VNSISPL_DBMS_Concepts_ch18
VNSISPL_DBMS_Concepts_ch18
 
VNSISPL_DBMS_Concepts_ch14
VNSISPL_DBMS_Concepts_ch14VNSISPL_DBMS_Concepts_ch14
VNSISPL_DBMS_Concepts_ch14
 
VNSISPL_DBMS_Concepts_ch13
VNSISPL_DBMS_Concepts_ch13VNSISPL_DBMS_Concepts_ch13
VNSISPL_DBMS_Concepts_ch13
 
VNSISPL_DBMS_Concepts_ch12
VNSISPL_DBMS_Concepts_ch12VNSISPL_DBMS_Concepts_ch12
VNSISPL_DBMS_Concepts_ch12
 
VNSISPL_DBMS_Concepts_ch11
VNSISPL_DBMS_Concepts_ch11VNSISPL_DBMS_Concepts_ch11
VNSISPL_DBMS_Concepts_ch11
 
VNSISPL_DBMS_Concepts_ch10
VNSISPL_DBMS_Concepts_ch10VNSISPL_DBMS_Concepts_ch10
VNSISPL_DBMS_Concepts_ch10
 
VNSISPL_DBMS_Concepts_ch9
VNSISPL_DBMS_Concepts_ch9VNSISPL_DBMS_Concepts_ch9
VNSISPL_DBMS_Concepts_ch9
 
VNSISPL_DBMS_Concepts_ch8
VNSISPL_DBMS_Concepts_ch8VNSISPL_DBMS_Concepts_ch8
VNSISPL_DBMS_Concepts_ch8
 
VNSISPL_DBMS_Concepts_ch7
VNSISPL_DBMS_Concepts_ch7VNSISPL_DBMS_Concepts_ch7
VNSISPL_DBMS_Concepts_ch7
 
VNSISPL_DBMS_Concepts_ch6
VNSISPL_DBMS_Concepts_ch6VNSISPL_DBMS_Concepts_ch6
VNSISPL_DBMS_Concepts_ch6
 
VNSISPL_DBMS_Concepts_ch5
VNSISPL_DBMS_Concepts_ch5VNSISPL_DBMS_Concepts_ch5
VNSISPL_DBMS_Concepts_ch5
 
VNSISPL_DBMS_Concepts_ch4
VNSISPL_DBMS_Concepts_ch4VNSISPL_DBMS_Concepts_ch4
VNSISPL_DBMS_Concepts_ch4
 
Vnsispl dbms concepts_ch3
Vnsispl dbms concepts_ch3Vnsispl dbms concepts_ch3
Vnsispl dbms concepts_ch3
 

Último

Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersChitralekhaTherkar
 

Último (20)

Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of Powders
 

VNSISPL_DBMS_Concepts_ch15

  • 1. Chapter 15: Transactions Database System Concepts, 1st Ed. ©VNS InfoSolutions Private Limited, Varanasi(UP), India 221002 See www.vnsispl.com for conditions on re-use
  • 2. Chapter 15: Transactions s Transaction Concept s Transaction State s Concurrent Executions s Serializability s Recoverability s Implementation of Isolation s Transaction Definition in SQL s Testing for Serializability. Database System Concepts – 1 st Ed. 15.2 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 3. Transaction Concept s A transaction is a unit of program execution that accesses and possibly updates various data items. s A transaction must see a consistent database. s During transaction execution the database may be temporarily inconsistent. s When the transaction completes successfully (is committed), the database must be consistent. s After a transaction commits, the changes it has made to the database persist, even if there are system failures. s Multiple transactions can execute in parallel. s Two main issues to deal with: q Failures of various kinds, such as hardware failures and system crashes q Concurrent execution of multiple transactions Database System Concepts – 1 st Ed. 15.3 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 4. ACID Properties A transaction is a unit of program execution that accesses and possibly updates various data items.To preserve the integrity of data the database system must ensure: s Atomicity. Either all operations of the transaction are properly reflected in the database or none are. s Consistency. Execution of a transaction in isolation preserves the consistency of the database. s Isolation. Although multiple transactions may execute concurrently, each transaction must be unaware of other concurrently executing transactions. Intermediate transaction results must be hidden from other concurrently executed transactions. q That is, for every pair of transactions Ti and Tj, it appears to Ti that either Tj, finished execution before Ti started, or Tj started execution after Ti finished. s Durability. After a transaction completes successfully, the changes it has made to the database persist, even if there are system failures. Database System Concepts – 1 st Ed. 15.4 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 5. Example of Fund Transfer s Transaction to transfer $50 from account A to account B: 1. read(A) 2. A := A – 50 3. write(A) 4. read(B) 5. B := B + 50 6. write(B) s Atomicity requirement — if the transaction fails after step 3 and before step 6, the system should ensure that its updates are not reflected in the database, else an inconsistency will result. s Consistency requirement – the sum of A and B is unchanged by the execution of the transaction. Database System Concepts – 1 st Ed. 15.5 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 6. Example of Fund Transfer (Cont.) s Isolation requirement — if between steps 3 and 6, another transaction is allowed to access the partially updated database, it will see an inconsistent database (the sum A + B will be less than it should be). q Isolation can be ensured trivially by running transactions serially, that is one after the other. q However, executing multiple transactions concurrently has significant benefits, as we will see later. s Durability requirement — once the user has been notified that the transaction has completed (i.e., the transfer of the $50 has taken place), the updates to the database by the transaction must persist despite failures. Database System Concepts – 1 st Ed. 15.6 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 7. Transaction State s Active – the initial state; the transaction stays in this state while it is executing s Partially committed – after the final statement has been executed. s Failed -- after the discovery that normal execution can no longer proceed. s Aborted – after the transaction has been rolled back and the database restored to its state prior to the start of the transaction. Two options after it has been aborted: q restart the transaction; can be done only if no internal logical error q kill the transaction s Committed – after successful completion. Database System Concepts – 1 st Ed. 15.7 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 8. Transaction State (Cont.) Database System Concepts – 1 st Ed. 15.8 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 9. Implementation of Atomicity and Durability s The recovery-management component of a database system implements the support for atomicity and durability. s The shadow-database scheme: q assume that only one transaction is active at a time. q a pointer called db_pointer always points to the current consistent copy of the database. q all updates are made on a shadow copy of the database, and db_pointer is made to point to the updated shadow copy only after the transaction reaches partial commit and all updated pages have been flushed to disk. q in case transaction fails, old consistent copy pointed to by db_pointer can be used, and the shadow copy can be deleted. Database System Concepts – 1 st Ed. 15.9 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 10. Implementation of Atomicity and Durability (Cont.) The shadow-database scheme: s Assumes disks do not fail s Useful for text editors, but q extremely inefficient for large databases (why?) q Does not handle concurrent transactions s Will study better schemes in Chapter 17. Database System Concepts – 1 st Ed. 15.10 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 11. Concurrent Executions s Multiple transactions are allowed to run concurrently in the system. Advantages are: q increased processor and disk utilization, leading to better transaction throughput: one transaction can be using the CPU while another is reading from or writing to the disk q reduced average response time for transactions: short transactions need not wait behind long ones. s Concurrency control schemes – mechanisms to achieve isolation; that is, to control the interaction among the concurrent transactions in order to prevent them from destroying the consistency of the database q Will study in Chapter 16, after studying notion of correctness of concurrent executions. Database System Concepts – 1 st Ed. 15.11 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 12. Schedules s Schedule – a sequences of instructions that specify the chronological order in which instructions of concurrent transactions are executed q a schedule for a set of transactions must consist of all instructions of those transactions q must preserve the order in which the instructions appear in each individual transaction. s A transaction that successfully completes its execution will have a commit instructions as the last statement (will be omitted if it is obvious) s A transaction that fails to successfully complete its execution will have an abort instructions as the last statement (will be omitted if it is obvious) Database System Concepts – 1 st Ed. 15.12 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 13. Schedule 1 s Let T1 transfer $50 from A to B, and T2 transfer 10% of the balance from A to B. s A serial schedule in which T1 is followed by T2: Database System Concepts – 1 st Ed. 15.13 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 14. Schedule 2 • A serial schedule where T2 is followed by T1 Database System Concepts – 1 st Ed. 15.14 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 15. Schedule 3 s Let T1 and T2 be the transactions defined previously. The following schedule is not a serial schedule, but it is equivalent to Schedule 1. In Schedules 1, 2 and 3, the sum A + B is preserved. Database System Concepts – 1 st Ed. 15.15 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 16. Schedule 4 s The following concurrent schedule does not preserve the value of (A + B). Database System Concepts – 1 st Ed. 15.16 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 17. Serializability s Basic Assumption – Each transaction preserves database consistency. s Thus serial execution of a set of transactions preserves database consistency. s A (possibly concurrent) schedule is serializable if it is equivalent to a serial schedule. Different forms of schedule equivalence give rise to the notions of: 1. conflict serializability 2. view serializability s We ignore operations other than read and write instructions, and we assume that transactions may perform arbitrary computations on data in local buffers in between reads and writes. Our simplified schedules consist of only read and write instructions. Database System Concepts – 1 st Ed. 15.17 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 18. Conflicting Instructions s Instructions li and lj of transactions Ti and Tj respectively, conflict if and only if there exists some item Q accessed by both li and lj, and at least one of these instructions wrote Q. 1. li = read(Q), lj = read(Q). li and lj don’t conflict. 2. li = read(Q), lj = write(Q). They conflict. 3. li = write(Q), lj = read(Q). They conflict 4. li = write(Q), lj = write(Q). They conflict s Intuitively, a conflict between li and lj forces a (logical) temporal order between them. q If li and lj are consecutive in a schedule and they do not conflict, their results would remain the same even if they had been interchanged in the schedule. Database System Concepts – 1 st Ed. 15.18 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 19. Conflict Serializability s If a schedule S can be transformed into a schedule S´ by a series of swaps of non-conflicting instructions, we say that S and S´ are conflict equivalent. s We say that a schedule S is conflict serializable if it is conflict equivalent to a serial schedule Database System Concepts – 1 st Ed. 15.19 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 20. Conflict Serializability (Cont.) s Schedule 3 can be transformed into Schedule 6, a serial schedule where T2 follows T1, by series of swaps of non- conflicting instructions. q Therefore Schedule 3 is conflict serializable. Schedule 3 Schedule 6 Database System Concepts – 1 st Ed. 15.20 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 21. Conflict Serializability (Cont.) s Example of a schedule that is not conflict serializable: s We are unable to swap instructions in the above schedule to obtain either the serial schedule < T3, T4 >, or the serial schedule < T4, T3 >. Database System Concepts – 1 st Ed. 15.21 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 22. View Serializability s Let S and S´ be two schedules with the same set of transactions. S and S´ are view equivalent if the following three conditions are met: 1. For each data item Q, if transaction Ti reads the initial value of Q in schedule S, then transaction Ti must, in schedule S´, also read the initial value of Q. 2. For each data item Q if transaction Ti executes read(Q) in schedule S, and that value was produced by transaction Tj (if any), then transaction Ti must in schedule S´ also read the value of Q that was produced by transaction Tj . 3. For each data item Q, the transaction (if any) that performs the final write(Q) operation in schedule S must perform the final write(Q) operation in schedule S´. As can be seen, view equivalence is also based purely on reads and writes alone. Database System Concepts – 1 st Ed. 15.22 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 23. View Serializability (Cont.) s A schedule S is view serializable it is view equivalent to a serial schedule. s Every conflict serializable schedule is also view serializable. s Below is a schedule which is view-serializable but not conflict serializable. s What serial schedule is above equivalent to? s Every view serializable schedule that is not conflict serializable has blind writes. Database System Concepts – 1 st Ed. 15.23 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 24. Other Notions of Serializability s The schedule below produces same outcome as the serial schedule < T1, T5 >, yet is not conflict equivalent or view equivalent to it. s Determining such equivalence requires analysis of operations other than read and write. Database System Concepts – 1 st Ed. 15.24 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 25. Testing for Serializability s Consider some schedule of a set of transactions T1, T2, ..., Tn s Precedence graph — a direct graph where the vertices are the transactions (names). s We draw an arc from Ti to Tj if the two transaction conflict, and Ti accessed the data item on which the conflict arose earlier. s We may label the arc by the item that was accessed. s Example 1 x y Database System Concepts – 1 st Ed. 15.25 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 26. Example Schedule (Schedule A) + Precedence Graph T1 T2 T3 T4 T5 read(X) read(Y) read(Z) read(V) read(W) T1 T2 read(W) read(Y) write(Y) write(Z) read(U) read(Y) T3 T4 write(Y) read(Z) write(Z) read(U) write(U) Database System Concepts – 1 st Ed. 15.26 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 27. Test for Conflict Serializability s A schedule is conflict serializable if and only if its precedence graph is acyclic. s Cycle-detection algorithms exist which take order n2 time, where n is the number of vertices in the graph. q (Better algorithms take order n + e where e is the number of edges.) s If precedence graph is acyclic, the serializability order can be obtained by a topological sorting of the graph. q This is a linear order consistent with the partial order of the graph. q For example, a serializability order for Schedule A would be T5 → T 1 → T3 → T 2 → T4  Are there others? Database System Concepts – 1 st Ed. 15.27 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 28. Test for View Serializability s The precedence graph test for conflict serializability cannot be used directly to test for view serializability. q Extension to test for view serializability has cost exponential in the size of the precedence graph. s The problem of checking if a schedule is view serializable falls in the class of NP-complete problems. q Thus existence of an efficient algorithm is extremely unlikely. s However practical algorithms that just check some sufficient conditions for view serializability can still be used. Database System Concepts – 1 st Ed. 15.28 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 29. Recoverable Schedules Need to address the effect of transaction failures on concurrently running transactions. s Recoverable schedule — if a transaction Tj reads a data item previously written by a transaction Ti , then the commit operation of Ti appears before the commit operation of Tj. s The following schedule (Schedule 11) is not recoverable if T9 commits immediately after the read s If T8 should abort, T9 would have read (and possibly shown to the user) an inconsistent database state. Hence, database must ensure that schedules are recoverable. Database System Concepts – 1 st Ed. 15.29 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 30. Cascading Rollbacks s Cascading rollback – a single transaction failure leads to a series of transaction rollbacks. Consider the following schedule where none of the transactions has yet committed (so the schedule is recoverable) If T10 fails, T11 and T12 must also be rolled back. s Can lead to the undoing of a significant amount of work Database System Concepts – 1 st Ed. 15.30 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 31. Cascadeless Schedules s Cascadeless schedules — cascading rollbacks cannot occur; for each pair of transactions Ti and Tj such that Tj reads a data item previously written by Ti, the commit operation of Ti appears before the read operation of Tj. s Every cascadeless schedule is also recoverable s It is desirable to restrict the schedules to those that are cascadeless Database System Concepts – 1 st Ed. 15.31 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 32. Concurrency Control s A database must provide a mechanism that will ensure that all possible schedules are q either conflict or view serializable, and q are recoverable and preferably cascadeless s A policy in which only one transaction can execute at a time generates serial schedules, but provides a poor degree of concurrency q Are serial schedules recoverable/cascadeless? s Testing a schedule for serializability after it has executed is a little too late! s Goal – to develop concurrency control protocols that will assure serializability. Database System Concepts – 1 st Ed. 15.32 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 33. Concurrency Control vs. Serializability Tests s Concurrency-control protocols allow concurrent schedules, but ensure that the schedules are conflict/view serializable, and are recoverable and cascadeless. s Concurrency control protocols generally do not examine the precedence graph as it is being created q Instead a protocol imposes a discipline that avoids nonseralizable schedules. q We study such protocols in Chapter 16. s Different concurrency control protocols provide different tradeoffs between the amount of concurrency they allow and the amount of overhead that they incur. s Tests for serializability help us understand why a concurrency control protocol is correct. Database System Concepts – 1 st Ed. 15.33 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 34. Weak Levels of Consistency s Some applications are willing to live with weak levels of consistency, allowing schedules that are not serializable q E.g. a read-only transaction that wants to get an approximate total balance of all accounts q E.g. database statistics computed for query optimization can be approximate (why?) q Such transactions need not be serializable with respect to other transactions s Tradeoff accuracy for performance Database System Concepts – 1 st Ed. 15.34 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 35. Levels of Consistency in SQL-92 s Serializable — default s Repeatable read — only committed records to be read, repeated reads of same record must return same value. However, a transaction may not be serializable – it may find some records inserted by a transaction but not find others. s Read committed — only committed records can be read, but successive reads of record may return different (but committed) values. s Read uncommitted — even uncommitted records may be read. s Lower degrees of consistency useful for gathering approximate information about the database Database System Concepts – 1 st Ed. 15.35 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 36. Transaction Definition in SQL s Data manipulation language must include a construct for specifying the set of actions that comprise a transaction. s In SQL, a transaction begins implicitly. s A transaction in SQL ends by: q Commit work commits current transaction and begins a new one. q Rollback work causes current transaction to abort. s Levels of consistency specified by SQL-92: q Serializable — default q Repeatable read q Read committed q Read uncommitted Database System Concepts – 1 st Ed. 15.36 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 37. End of Chapter Database System Concepts, 1st Ed. ©VNS InfoSolutions Private Limited, Varanasi(UP), India 221002 See www.vnsispl.com for conditions on re-use
  • 38. Database System Concepts – 1 st Ed. 15.38 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 39. Database System Concepts – 1 st Ed. 15.39 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 40. Schedule 7 Database System Concepts – 1 st Ed. 15.40 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 41. Precedence Graph for (a) Schedule 1 and (b) Schedule 2 Database System Concepts – 1 st Ed. 15.41 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 42. Illustration of Topological Sorting Database System Concepts – 1 st Ed. 15.42 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 43. Precedence Graph Database System Concepts – 1 st Ed. 15.43 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 44. fig. 15.21 Database System Concepts – 1 st Ed. 15.44 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 45. Implementation of Isolation s Schedules must be conflict or view serializable, and recoverable, for the sake of database consistency, and preferably cascadeless. s A policy in which only one transaction can execute at a time generates serial schedules, but provides a poor degree of concurrency. s Concurrency-control schemes tradeoff between the amount of concurrency they allow and the amount of overhead that they incur. s Some schemes allow only conflict-serializable schedules to be generated, while others allow view-serializable schedules that are not conflict-serializable. Database System Concepts – 1 st Ed. 15.45 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 46. Figure 15.6 Database System Concepts – 1 st Ed. 15.46 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 47. Figure 15.12 Database System Concepts – 1 st Ed. 15.47 © VNS InfoSolutions Private Limited, Varanasi(UP), India 22100