Please enable JavaScript.
Coggle requires JavaScript to display documents.
CHAPTER 5: DATABASE TRANSACTION MANAGEMENT, Dannellia, Dannellia,…
-
Dannellia
Haziq
DATABASE LEVEL-LOCK
-
Good for batch processing but unsuitable for online multi-user DBMSs.
T1 and T2 can not access the same database concurrently even if they use different tables.
TABLE -LEVEL LOCK
-T1 and T2 can access the same database concurrently as long as they use different tables.
-Can cause bottlenecks when many transactions are trying to access the same table (even if the transactions want to access different parts of the table and would not interfere with each other).
-No suitable for multi-user DBMSs.
Dannellia
CONCURRENCY CONTROL
-The coordination of the simultaneous execution of transactions in a multiprocessing database is known ad concurrency control.
-The objective of concurrency control is to ensure the serializability of transactions in a multiuser database environment.
-
-
-
-
-
-
-
-
-
-
-
-
-
-