SlideShare une entreprise Scribd logo
1  sur  50
Database Systems: Design,
Implementation, and
Management
Eighth Edition
Chapter 10
Transaction Management
and Concurrency Control
Database Systems, 8th
Edition 2
Objectives
• In this chapter, you will learn:
– About database transactions and their properties
– What concurrency control is and what role it
plays in maintaining the database’s integrity
– What locking methods are and how they work
Database Systems, 8th
Edition 3
Objectives (continued)
• In this chapter, you will learn: (continued)
– How stamping methods are used for
concurrency control
– How optimistic methods are used for
concurrency control
– How database recovery management is used to
maintain database integrity
Database Systems, 8th
Edition 4
What is a Transaction?
• 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
– Equivalent of a single SQL statement in an
application program or transaction
Database Systems, 8th
Edition 5
Database Systems, 8th
Edition 6
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
Database Systems, 8th
Edition 7
Figure 9.2
Database Systems, 8th
Edition 8
Transaction Properties
• Atomicity
– All operations of a transaction must be
completed
• Consistency
– Permanence of database’s consistent state
• Isolation
– Data used during transaction cannot be used by
second transaction until the first is completed
Database Systems, 8th
Edition 9
Transaction Properties (continued)
• Durability
– Once transactions are committed, they cannot
be undone
• Serializability
– Concurrent execution of several transactions
yields consistent results
• Multiuser databases subject to multiple
concurrent transactions
Database Systems, 8th
Edition 10
Transaction Management with SQL
• ANSI has defined standards that govern SQL
database transactions
• Transaction support is provided by two SQL
statements: COMMIT and ROLLBACK
• Transaction sequence must continue until:
– COMMIT statement is reached
– ROLLBACK statement is reached
– End of program is reached
– Program is abnormally terminated
Database Systems, 8th
Edition 11
The Transaction Log
• Transaction log stores:
– A record for the beginning of transaction
– For each transaction component:
• 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
Database Systems, 8th
Edition 12
Database Systems, 8th
Edition 13
Concurrency Control
• Coordination of simultaneous transaction
execution in a multiprocessing database
• Objective is to ensure serializability of
transactions in a multiuser environment
Database Systems, 8th
Edition 14
Lost Updates
• Lost update problem:
– Two concurrent transactions update same data
element
– One of the updates is lost
• Overwritten by the other transaction
Database Systems, 8th
Edition 15
Database Systems, 8th
Edition 16
Uncommitted Data
• Uncommitted data phenomenon:
– Two transactions executed concurrently
– First transaction rolled back after second already
accessed uncommitted data
Database Systems, 8th
Edition 17
Database Systems, 8th
Edition 18
Inconsistent Retrievals
• Inconsistent retrievals:
– First transaction accesses data
– Second transaction alters the data
– First transaction accesses the data again
• Transaction might read some data before they
are changed and other data after changed
• Yields inconsistent results
Database Systems, 8th
Edition 19
Database Systems, 8th
Edition 20
Database Systems, 8th
Edition 21
The Scheduler
• Special DBMS program
– Purpose is to establish order of operations within
which concurrent transactions are executed
• Interleaves execution of database operations:
– Ensures serializability
– Ensures isolation
• Serializable schedule
– Interleaved execution of transactions yields
same results as serial execution
Database Systems, 8th
Edition 22
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
Database Systems, 8th
Edition 23
Lock Granularity
• Indicates level of lock use
• Locking can take place at following levels:
– Database
– Table
– Page
– Row
– Field (attribute)
Database Systems, 8th
Edition 24
Lock Granularity (continued)
• Database-level lock
– Entire database is locked
• Table-level lock
– Entire table is locked
• Page-level lock
– Entire diskpage is locked
Database Systems, 8th
Edition 25
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
• Requires use of different fields (attributes) within
the row
Database Systems, 8th
Edition 26
Database Systems, 8th
Edition 27
Database Systems, 8th
Edition 28
Database Systems, 8th
Edition 29
Database Systems, 8th
Edition 30
Lock Types
• Binary lock
– Two states: locked (1) or unlocked (0)
• Exclusive lock
– Access is specifically reserved for transaction that
locked object
– Must be used when potential for conflict exists
• Shared lock
– Concurrent transactions are granted read access on
basis of a common lock
Database Systems, 8th
Edition 31
Database Systems, 8th
Edition 32
Two-Phase Locking
to Ensure Serializability
• Defines how transactions acquire and
relinquish locks
• Guarantees serializability, but 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
Database Systems, 8th
Edition 33
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
Database Systems, 8th
Edition 34
Database Systems, 8th
Edition 35
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
Database Systems, 8th
Edition 36
Deadlocks (continued)
• Three techniques to control deadlock:
– Prevention
– Detection
– Avoidance
• Choice of deadlock control method depends
on database environment
– Low probability of deadlock, detection
recommended
– High probability, prevention recommended
Database Systems, 8th
Edition 37
Database Systems, 8th
Edition 38
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
Database Systems, 8th
Edition 39
Wait/Die and Wound/Wait Schemes
• Wait/die
– Older transaction waits and younger is rolled
back and rescheduled
• Wound/wait
– Older transaction rolls back younger transaction
and reschedules it
Database Systems, 8th
Edition 40
Database Systems, 8th
Edition 41
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: read, validation, and write
Database Systems, 8th
Edition 42
Database Recovery Management
• Restores database to previous consistent state
• Based on atomic transaction property
– All portions of transaction treated as single
logical unit of work
– All operations applied and completed to produce
consistent database
• If transaction operation cannot be completed
– Transaction aborted
– Changes to database rolled back
Database Systems, 8th
Edition 43
Transaction Recovery
• Write-ahead-log protocol: ensures transaction
logs are written before data is updated
• Redundant transaction logs: ensure physical
disk failure will not impair ability to recover
• Buffers: temporary storage areas in primary
memory
• Checkpoints: operations in which DBMS writes
all its updated buffers to disk
Database Systems, 8th
Edition 44
Transaction Recovery (continued)
• Deferred-write technique
– Only transaction log is updated
• Recovery process:
– Identify last checkpoint
– If transaction committed before checkpoint
• Do nothing
– If transaction committed after checkpoint
• Use transaction log to redo the transaction
– If transaction had ROLLBACK operation
• Do nothing
Database Systems, 8th
Edition 45
Transaction Recovery (continued)
• Write-through technique
– Database is immediately updated by transaction
operations during transaction’s execution
• Recovery process
– Identify last checkpoint
– If transaction was committed before checkpoint
• Do nothing
– If transaction committed after last checkpoint
• DBMS redoes the transaction using “after” values
– If transaction had ROLLBACK or was left active
• Do nothing because no updates were made
Database Systems, 8th
Edition 46
Database Systems, 8th
Edition 47
Summary
• Transaction: sequence of database operations
that access database
– Logical unit of work
• No portion of transaction can exist by itself
– Five main properties: atomicity, consistency,
isolation, durability, and serializability
• COMMIT saves changes to disk
• ROLLBACK restores previous database state
• SQL transactions are formed by several SQL
statements or database requests
Database Systems, 8th
Edition 48
Summary (continued)
• Transaction log keeps track of all transactions
that modify database
• Concurrency control coordinates simultaneous
execution of transactions
• Scheduler establishes order in which
concurrent transaction operations are executed
• Lock guarantees unique access to a data item
by transaction
• Two types of locks: binary locks and
shared/exclusive locks
Database Systems, 8th
Edition 49
Summary (continued)
• Serializability of schedules is guaranteed
through the use of two-phase locking
• Deadlock: when two or more transactions wait
indefinitely for each other to release lock
• Three deadlock control techniques: prevention,
detection, and avoidance
• Time stamping methods assign unique time
stamp to each transaction
– Schedules execution of conflicting transactions
in time stamp order
Database Systems, 8th
Edition 50
Summary (continued)
• Optimistic methods assume the majority of
database transactions do not conflict
– Transactions are executed concurrently, using
private copies of the data
• Database recovery restores database from
given state to previous consistent state

Contenu connexe

Tendances

Tendances (20)

Transaction management DBMS
Transaction  management DBMSTransaction  management DBMS
Transaction management DBMS
 
2 phase locking protocol DBMS
2 phase locking protocol DBMS2 phase locking protocol DBMS
2 phase locking protocol DBMS
 
Distributed DBMS - Unit 6 - Query Processing
Distributed DBMS - Unit 6 - Query ProcessingDistributed DBMS - Unit 6 - Query Processing
Distributed DBMS - Unit 6 - Query Processing
 
Distribution transparency and Distributed transaction
Distribution transparency and Distributed transactionDistribution transparency and Distributed transaction
Distribution transparency and Distributed transaction
 
Distributed database management system
Distributed database management  systemDistributed database management  system
Distributed database management system
 
Transactions and Concurrency Control
Transactions and Concurrency ControlTransactions and Concurrency Control
Transactions and Concurrency Control
 
DDBMS
DDBMSDDBMS
DDBMS
 
Parallel Database
Parallel DatabaseParallel Database
Parallel Database
 
Concurrency Control in Distributed Database.
Concurrency Control in Distributed Database.Concurrency Control in Distributed Database.
Concurrency Control in Distributed Database.
 
Distributed database
Distributed databaseDistributed database
Distributed database
 
Transactions in dbms
Transactions in dbmsTransactions in dbms
Transactions in dbms
 
Relational Algebra & Calculus
Relational Algebra & CalculusRelational Algebra & Calculus
Relational Algebra & Calculus
 
Fragmentation and types of fragmentation in Distributed Database
Fragmentation and types of fragmentation in Distributed DatabaseFragmentation and types of fragmentation in Distributed Database
Fragmentation and types of fragmentation in Distributed Database
 
PL/SQL Introduction and Concepts
PL/SQL Introduction and Concepts PL/SQL Introduction and Concepts
PL/SQL Introduction and Concepts
 
Relational Database Design
Relational Database DesignRelational Database Design
Relational Database Design
 
Deadlock dbms
Deadlock dbmsDeadlock dbms
Deadlock dbms
 
Integrity Constraints
Integrity ConstraintsIntegrity Constraints
Integrity Constraints
 
Distributed DBMS - Unit 3 - Distributed DBMS Architecture
Distributed DBMS - Unit 3 - Distributed DBMS ArchitectureDistributed DBMS - Unit 3 - Distributed DBMS Architecture
Distributed DBMS - Unit 3 - Distributed DBMS Architecture
 
Query processing and optimization (updated)
Query processing and optimization (updated)Query processing and optimization (updated)
Query processing and optimization (updated)
 
Dbms relational model
Dbms relational modelDbms relational model
Dbms relational model
 

En vedette

Transaction concurrency control
Transaction concurrency controlTransaction concurrency control
Transaction concurrency control
Anand Grewal
 
4. concurrency control
4. concurrency control4. concurrency control
4. concurrency control
AbDul ThaYyal
 
Transaction management
Transaction managementTransaction management
Transaction management
renuka_a
 
Databases: Concurrency Control
Databases: Concurrency ControlDatabases: Concurrency Control
Databases: Concurrency Control
Damian T. Gordon
 

En vedette (20)

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
 
Concurrency control
Concurrency controlConcurrency control
Concurrency control
 
4. concurrency control
4. concurrency control4. concurrency control
4. concurrency control
 
Transaction & Concurrency Control
Transaction & Concurrency ControlTransaction & Concurrency Control
Transaction & Concurrency Control
 
Transaction management
Transaction managementTransaction management
Transaction management
 
Databases: Concurrency Control
Databases: Concurrency ControlDatabases: Concurrency Control
Databases: Concurrency Control
 
Advanced data modeling
Advanced data modelingAdvanced data modeling
Advanced data modeling
 
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)
 
Distributed database management systems
Distributed database management systemsDistributed database management systems
Distributed database management systems
 
Transaction slide
Transaction slideTransaction slide
Transaction slide
 
Concurrency control
Concurrency controlConcurrency control
Concurrency control
 
Business intelligence and data warehouses
Business intelligence and data warehousesBusiness intelligence and data warehouses
Business intelligence and data warehouses
 
Database administration and security
Database administration and securityDatabase administration and security
Database administration and security
 
Database connectivity and web technologies
Database connectivity and web technologiesDatabase connectivity and web technologies
Database connectivity and web technologies
 
Introduction to structured query language (sql)
Introduction to structured query language (sql)Introduction to structured query language (sql)
Introduction to structured query language (sql)
 
Transaction Management
Transaction Management Transaction Management
Transaction Management
 
DBMS-chap 2-Concurrency Control
DBMS-chap 2-Concurrency ControlDBMS-chap 2-Concurrency Control
DBMS-chap 2-Concurrency Control
 
Distributed DBMS - Unit 8 - Distributed Transaction Management & Concurrency ...
Distributed DBMS - Unit 8 - Distributed Transaction Management & Concurrency ...Distributed DBMS - Unit 8 - Distributed Transaction Management & Concurrency ...
Distributed DBMS - Unit 8 - Distributed Transaction Management & Concurrency ...
 
Mobile-First SEO - The Marketers Edition #3XEDigital
Mobile-First SEO - The Marketers Edition #3XEDigitalMobile-First SEO - The Marketers Edition #3XEDigital
Mobile-First SEO - The Marketers Edition #3XEDigital
 

Similaire à Transaction management and concurrency control

FALLSEM2023-24_BCSE302L_TH_VL2023240100957_2023-06-21_Reference-Material-I.pptx
FALLSEM2023-24_BCSE302L_TH_VL2023240100957_2023-06-21_Reference-Material-I.pptxFALLSEM2023-24_BCSE302L_TH_VL2023240100957_2023-06-21_Reference-Material-I.pptx
FALLSEM2023-24_BCSE302L_TH_VL2023240100957_2023-06-21_Reference-Material-I.pptx
hritikraj888
 
Unit 4 chapter - 8 Transaction processing Concepts (1).pptx
Unit 4 chapter - 8 Transaction processing Concepts (1).pptxUnit 4 chapter - 8 Transaction processing Concepts (1).pptx
Unit 4 chapter - 8 Transaction processing Concepts (1).pptx
Koteswari Kasireddy
 
Integrity of data lucas jellema
Integrity of data   lucas jellemaIntegrity of data   lucas jellema
Integrity of data lucas jellema
NLJUG
 
On the integrity of data in Java Applications
On the integrity of data in Java ApplicationsOn the integrity of data in Java Applications
On the integrity of data in Java Applications
NLJUG
 

Similaire à Transaction management and concurrency control (20)

1. Transaction Processing and Concurrency Control.pptx
1. Transaction Processing and Concurrency Control.pptx1. Transaction Processing and Concurrency Control.pptx
1. Transaction Processing and Concurrency Control.pptx
 
Presentation on Transaction
Presentation on TransactionPresentation on Transaction
Presentation on Transaction
 
Hbase hivepig
Hbase hivepigHbase hivepig
Hbase hivepig
 
FALLSEM2023-24_BCSE302L_TH_VL2023240100957_2023-06-21_Reference-Material-I.pptx
FALLSEM2023-24_BCSE302L_TH_VL2023240100957_2023-06-21_Reference-Material-I.pptxFALLSEM2023-24_BCSE302L_TH_VL2023240100957_2023-06-21_Reference-Material-I.pptx
FALLSEM2023-24_BCSE302L_TH_VL2023240100957_2023-06-21_Reference-Material-I.pptx
 
Unit 4 chapter - 8 Transaction processing Concepts (1).pptx
Unit 4 chapter - 8 Transaction processing Concepts (1).pptxUnit 4 chapter - 8 Transaction processing Concepts (1).pptx
Unit 4 chapter - 8 Transaction processing Concepts (1).pptx
 
Chapter-10 Transaction Processing and Error Recovery
Chapter-10 Transaction Processing and Error RecoveryChapter-10 Transaction Processing and Error Recovery
Chapter-10 Transaction Processing and Error Recovery
 
Chap3.ppt
Chap3.pptChap3.ppt
Chap3.ppt
 
E-Business Information System BBA AVI.pptx
E-Business Information System BBA AVI.pptxE-Business Information System BBA AVI.pptx
E-Business Information System BBA AVI.pptx
 
Hbase hive pig
Hbase hive pigHbase hive pig
Hbase hive pig
 
chp13.pdf
chp13.pdfchp13.pdf
chp13.pdf
 
Taking Full Advantage of Galera Multi Master Cluster
Taking Full Advantage of Galera Multi Master ClusterTaking Full Advantage of Galera Multi Master Cluster
Taking Full Advantage of Galera Multi Master Cluster
 
Concurrency Control in Distributed Systems.pptx
Concurrency Control in Distributed Systems.pptxConcurrency Control in Distributed Systems.pptx
Concurrency Control in Distributed Systems.pptx
 
Integrity of data lucas jellema
Integrity of data   lucas jellemaIntegrity of data   lucas jellema
Integrity of data lucas jellema
 
On the integrity of data in Java Applications
On the integrity of data in Java ApplicationsOn the integrity of data in Java Applications
On the integrity of data in Java Applications
 
Backing Up and Recovery
Backing Up and RecoveryBacking Up and Recovery
Backing Up and Recovery
 
dbms.ppt
dbms.pptdbms.ppt
dbms.ppt
 
dbms.ppt
dbms.pptdbms.ppt
dbms.ppt
 
What is Database Management System
What is Database Management SystemWhat is Database Management System
What is Database Management System
 
DBMS Vardhaman.pdf
DBMS Vardhaman.pdfDBMS Vardhaman.pdf
DBMS Vardhaman.pdf
 
Chapter03
Chapter03Chapter03
Chapter03
 

Plus de Dhani Ahmad

Opportunities, threats, industry competition, and competitor analysis
Opportunities, threats, industry competition, and competitor analysisOpportunities, threats, industry competition, and competitor analysis
Opportunities, threats, industry competition, and competitor analysis
Dhani Ahmad
 
Information system
Information systemInformation system
Information system
Dhani Ahmad
 
Information resource management
Information resource managementInformation resource management
Information resource management
Dhani Ahmad
 

Plus de Dhani Ahmad (20)

Strategic planning
Strategic planningStrategic planning
Strategic planning
 
Strategic information system planning
Strategic information system planningStrategic information system planning
Strategic information system planning
 
Opportunities, threats, industry competition, and competitor analysis
Opportunities, threats, industry competition, and competitor analysisOpportunities, threats, industry competition, and competitor analysis
Opportunities, threats, industry competition, and competitor analysis
 
Information system
Information systemInformation system
Information system
 
Information resource management
Information resource managementInformation resource management
Information resource management
 
Types of islamic institutions and records
Types of islamic institutions and recordsTypes of islamic institutions and records
Types of islamic institutions and records
 
Islamic information seeking behavior
Islamic information seeking behaviorIslamic information seeking behavior
Islamic information seeking behavior
 
Islamic information management
Islamic information managementIslamic information management
Islamic information management
 
Islamic information management sources in islam
Islamic information management sources in islamIslamic information management sources in islam
Islamic information management sources in islam
 
The need for security
The need for securityThe need for security
The need for security
 
The information security audit
The information security auditThe information security audit
The information security audit
 
Security technologies
Security technologiesSecurity technologies
Security technologies
 
Security policy
Security policySecurity policy
Security policy
 
Security and personnel
Security and personnelSecurity and personnel
Security and personnel
 
Secure
SecureSecure
Secure
 
Risk management ii
Risk management iiRisk management ii
Risk management ii
 
Risk management i
Risk management iRisk management i
Risk management i
 
Privacy & security in heath care it
Privacy & security in heath care itPrivacy & security in heath care it
Privacy & security in heath care it
 
Physical security
Physical securityPhysical security
Physical security
 
Legal, ethical & professional issues
Legal, ethical & professional issuesLegal, ethical & professional issues
Legal, ethical & professional issues
 

Dernier

Probability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter LessonsProbability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter Lessons
JoseMangaJr1
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
amitlee9823
 
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
amitlee9823
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
amitlee9823
 
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
amitlee9823
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
amitlee9823
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
only4webmaster01
 

Dernier (20)

Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Probability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter LessonsProbability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter Lessons
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
 
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
 

Transaction management and concurrency control

  • 1. Database Systems: Design, Implementation, and Management Eighth Edition Chapter 10 Transaction Management and Concurrency Control
  • 2. Database Systems, 8th Edition 2 Objectives • In this chapter, you will learn: – About database transactions and their properties – What concurrency control is and what role it plays in maintaining the database’s integrity – What locking methods are and how they work
  • 3. Database Systems, 8th Edition 3 Objectives (continued) • In this chapter, you will learn: (continued) – How stamping methods are used for concurrency control – How optimistic methods are used for concurrency control – How database recovery management is used to maintain database integrity
  • 4. Database Systems, 8th Edition 4 What is a Transaction? • 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 – Equivalent of a single SQL statement in an application program or transaction
  • 6. Database Systems, 8th Edition 6 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
  • 8. Database Systems, 8th Edition 8 Transaction Properties • Atomicity – All operations of a transaction must be completed • Consistency – Permanence of database’s consistent state • Isolation – Data used during transaction cannot be used by second transaction until the first is completed
  • 9. Database Systems, 8th Edition 9 Transaction Properties (continued) • Durability – Once transactions are committed, they cannot be undone • Serializability – Concurrent execution of several transactions yields consistent results • Multiuser databases subject to multiple concurrent transactions
  • 10. Database Systems, 8th Edition 10 Transaction Management with SQL • ANSI has defined standards that govern SQL database transactions • Transaction support is provided by two SQL statements: COMMIT and ROLLBACK • Transaction sequence must continue until: – COMMIT statement is reached – ROLLBACK statement is reached – End of program is reached – Program is abnormally terminated
  • 11. Database Systems, 8th Edition 11 The Transaction Log • Transaction log stores: – A record for the beginning of transaction – For each transaction component: • 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
  • 13. Database Systems, 8th Edition 13 Concurrency Control • Coordination of simultaneous transaction execution in a multiprocessing database • Objective is to ensure serializability of transactions in a multiuser environment
  • 14. Database Systems, 8th Edition 14 Lost Updates • Lost update problem: – Two concurrent transactions update same data element – One of the updates is lost • Overwritten by the other transaction
  • 16. Database Systems, 8th Edition 16 Uncommitted Data • Uncommitted data phenomenon: – Two transactions executed concurrently – First transaction rolled back after second already accessed uncommitted data
  • 18. Database Systems, 8th Edition 18 Inconsistent Retrievals • Inconsistent retrievals: – First transaction accesses data – Second transaction alters the data – First transaction accesses the data again • Transaction might read some data before they are changed and other data after changed • Yields inconsistent results
  • 21. Database Systems, 8th Edition 21 The Scheduler • Special DBMS program – Purpose is to establish order of operations within which concurrent transactions are executed • Interleaves execution of database operations: – Ensures serializability – Ensures isolation • Serializable schedule – Interleaved execution of transactions yields same results as serial execution
  • 22. Database Systems, 8th Edition 22 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
  • 23. Database Systems, 8th Edition 23 Lock Granularity • Indicates level of lock use • Locking can take place at following levels: – Database – Table – Page – Row – Field (attribute)
  • 24. Database Systems, 8th Edition 24 Lock Granularity (continued) • Database-level lock – Entire database is locked • Table-level lock – Entire table is locked • Page-level lock – Entire diskpage is locked
  • 25. Database Systems, 8th Edition 25 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 • Requires use of different fields (attributes) within the row
  • 30. Database Systems, 8th Edition 30 Lock Types • Binary lock – Two states: locked (1) or unlocked (0) • Exclusive lock – Access is specifically reserved for transaction that locked object – Must be used when potential for conflict exists • Shared lock – Concurrent transactions are granted read access on basis of a common lock
  • 32. Database Systems, 8th Edition 32 Two-Phase Locking to Ensure Serializability • Defines how transactions acquire and relinquish locks • Guarantees serializability, but 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
  • 33. Database Systems, 8th Edition 33 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
  • 35. Database Systems, 8th Edition 35 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
  • 36. Database Systems, 8th Edition 36 Deadlocks (continued) • Three techniques to control deadlock: – Prevention – Detection – Avoidance • Choice of deadlock control method depends on database environment – Low probability of deadlock, detection recommended – High probability, prevention recommended
  • 38. Database Systems, 8th Edition 38 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
  • 39. Database Systems, 8th Edition 39 Wait/Die and Wound/Wait Schemes • Wait/die – Older transaction waits and younger is rolled back and rescheduled • Wound/wait – Older transaction rolls back younger transaction and reschedules it
  • 41. Database Systems, 8th Edition 41 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: read, validation, and write
  • 42. Database Systems, 8th Edition 42 Database Recovery Management • Restores database to previous consistent state • Based on atomic transaction property – All portions of transaction treated as single logical unit of work – All operations applied and completed to produce consistent database • If transaction operation cannot be completed – Transaction aborted – Changes to database rolled back
  • 43. Database Systems, 8th Edition 43 Transaction Recovery • Write-ahead-log protocol: ensures transaction logs are written before data is updated • Redundant transaction logs: ensure physical disk failure will not impair ability to recover • Buffers: temporary storage areas in primary memory • Checkpoints: operations in which DBMS writes all its updated buffers to disk
  • 44. Database Systems, 8th Edition 44 Transaction Recovery (continued) • Deferred-write technique – Only transaction log is updated • Recovery process: – Identify last checkpoint – If transaction committed before checkpoint • Do nothing – If transaction committed after checkpoint • Use transaction log to redo the transaction – If transaction had ROLLBACK operation • Do nothing
  • 45. Database Systems, 8th Edition 45 Transaction Recovery (continued) • Write-through technique – Database is immediately updated by transaction operations during transaction’s execution • Recovery process – Identify last checkpoint – If transaction was committed before checkpoint • Do nothing – If transaction committed after last checkpoint • DBMS redoes the transaction using “after” values – If transaction had ROLLBACK or was left active • Do nothing because no updates were made
  • 47. Database Systems, 8th Edition 47 Summary • Transaction: sequence of database operations that access database – Logical unit of work • No portion of transaction can exist by itself – Five main properties: atomicity, consistency, isolation, durability, and serializability • COMMIT saves changes to disk • ROLLBACK restores previous database state • SQL transactions are formed by several SQL statements or database requests
  • 48. Database Systems, 8th Edition 48 Summary (continued) • Transaction log keeps track of all transactions that modify database • Concurrency control coordinates simultaneous execution of transactions • Scheduler establishes order in which concurrent transaction operations are executed • Lock guarantees unique access to a data item by transaction • Two types of locks: binary locks and shared/exclusive locks
  • 49. Database Systems, 8th Edition 49 Summary (continued) • Serializability of schedules is guaranteed through the use of two-phase locking • Deadlock: when two or more transactions wait indefinitely for each other to release lock • Three deadlock control techniques: prevention, detection, and avoidance • Time stamping methods assign unique time stamp to each transaction – Schedules execution of conflicting transactions in time stamp order
  • 50. Database Systems, 8th Edition 50 Summary (continued) • Optimistic methods assume the majority of database transactions do not conflict – Transactions are executed concurrently, using private copies of the data • Database recovery restores database from given state to previous consistent state