6) Data Con Currency

  • Uploaded by: rickyjosh
  • 0
  • 0
  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View 6) Data Con Currency as PDF for free.

More details

  • Words: 2,097
  • Pages: 35
IBM DB2 9

Section -6) Data Concurrency Ajay Shankar Khare Technical Consultant DB2 –IBM Academic Initiative WEBTEK LABS PVT LTD [email protected]

© 2008 IBM Corporation

IBM DB2 9

Section 6 - Data Concurrency (11%)  Ability to identify factors that influence locking  Ability to list objects on which locks can be obtained  Ability to identify characteristics of DB2 locks  Given a situation, ability to identify the isolation level that should be used

2

IBM DB2 9

Database Transactions  A transaction (also known as a unit of work ) is a recoverable sequence of one or more SQL operations, grouped together as a single unit, usually within an application process.  Role of COMMIT, Auto-Commit and ROLLBACK  ACID = Atomicity, Consistency, Isolation and Durability  In single-user environments, each transaction runs serially and doesn't interfere to other transactions.  In multi-user environments, transactions can (and often do) run simultaneously. As a result, each transaction has the potential to interfere with other active transactions.

3

IBM DB2 9

Simple workload consisting of three transactions CONNECT TO my_db CREATE TABLE department (dept_id INTEGER NOT NULL, dept_name VARCHAR(20)) INSERT INTO department VALUES(100, 'PAYROLL') INSERT INTO department VALUES(200, 'ACCOUNTING') COMMIT; INSERT INTO department VALUES(300, 'SALES') ROLLBACK; INSERT INTO department VALUES(500, 'MARKETING') COMMIT;

4

IBM DB2 9

5

IBM DB2 9

Possible Issues In Multiple-user Scenario  Lost Update - This occurs when two transactions read and then attempt to update the same data, and one of the updates is lost.  Uncommitted Read - This occurs when a transaction reads data that has not yet been committed.  Non-repeatable Read - This occurs when a transaction reads the same row of data twice, but gets different data values each time.  Phantom Read - This occurs when a row of data that matches search criteria is not seen initially, but then seen in a later read operation. 6

IBM DB2 9

Isolation levels to enforce concurrency  Maintaining database consistency and data integrity, while allowing more than one application to access the same data at the same time, is known as concurrency.  DB2 attempts to enforce concurrency is through the use of given four isolation levels, which determine how data used in one transaction is locked or isolated from other transactions while the first transaction works with it. - • Repeatable read - • Read stability - • Cursor stability - • Uncommitted read

7

IBM DB2 9

Uncommitted Read (UR)  Least restrictive isolation level available.  Allows an application to access uncommitted changes of other applications.  When this isolation level is used, rows retrieved by a transaction are only locked if the transaction modifies data associated with one or more rows retrieved or if another transaction drop or alter the table the rows were retrieved from.  When this isolation level is used, dirty reads, non-repeatable reads, and phantoms can occur.  Use it if you're executing queries on read-only tables/views/databases or if it doesn't matter whether a query returns uncommitted data values. 8

IBM DB2 9

9

IBM DB2 9

Cursor Stability (CS)  Default isolation level.  This isolation level only locks the row that is currently referenced by a cursor that was declared and opened by the owning transaction. The lock remains in effect until next row is fetched or transaction is terminated.  When this isolation level is used, lost updates and dirty reads cannot occur; non-repeatable reads and phantoms can and may be seen.  Use the Cursor Stability isolation level when you want maximum concurrency between applications, yet you don't want queries to see uncommitted data. 10

IBM DB2 9

11

IBM DB2 9

Read Stability (RS)  When this isolation level is used, only rows that are actually retrieved or modified by the owning transaction are locked.  When this isolation level is used, lost updates, dirty reads, and non-repeatable reads cannot occur; phantoms, however, can and may be seen.  Use the Read Stability isolation level when you want some level of concurrency between applications, yet you also want qualified rows to remain stable for the duration of an individual transaction. 12

IBM DB2 9

13

IBM DB2 9

Repeatable Read (RR)  Most restrictive isolation level available  If an entire table or view is scanned in response to a query, the entire table or all table rows referenced by the view are locked. This greatly reduces concurrency, especially when large tables are used.  Lost updates, dirty reads, non-repeatable reads, and phantoms cannot occur.  Use the Repeatable Read isolation level if you're executing large queries and you don't want concurrent transactions to have the ability to make changes that could cause the query to return different results if run more than once. 14

IBM DB2 9

15

IBM DB2 9

Specifying isolation levels with queries

WITH clause (WITH [RR | RS | CS | UR]) that can be appended to a SELECT statement to set a specific query's isolation level to Repeatable Read (RR), Read Stability (RS), Cursor Stability (CS), or Uncommitted Read (UR). For Example: SELECT * FROM employee WHERE empid = '001' WITH RR 16

IBM DB2 9

Locking  A lock is a mechanism that is used to associate a data resource with a single transaction, for the sole purpose of controlling how other transactions interact with that resource while it is associated with the transaction that has it locked. 17

IBM DB2 9

Lock Attributes resource being locked is called object. objects which can be explicitly locked are databases, tables and table spaces. objects which can be implicitely locked are rows, index keys, tables. Implicit locks are acquired by DB2 according to isolation level and processing situations. object being locked represents granularity of lock. length of time a lock is held is called duration and is affected by isolation level. 18

IBM DB2 9

How Locks Are Acquired  ALTER TABLE [TableName] LOCKSIZE [ROW | TABLE]  LOCKSIZE ROW (Default) will acquire row-level locks for every transaction that accesses this table. LOCKSIZE TABLE will attempt to acquire table-level locks for every transaction that accesses this table.  LOCK TABLE [TableName] IN [SHARE | EXCLUSIVE] MODE  A table-level Share (S) lock is acquired on behalf of the requesting transaction, and other concurrent transactions are allowed to read, but not change, data stored in the locked table. When table-level Exclusive (X) lock is acquired, and other concurrent transactions can neither access nor modify data stored in the locked table.

19

IBM DB2 9

20

IBM DB2 9

21

IBM DB2 9

22

IBM DB2 9

Deadlock  If the deadlock detector discovers a deadlock cycle, it randomly selects one of the transactions involved to roll back and terminate; the transaction chosen is then sent an SQL error code, and every lock it had acquired is released.

23

IBM DB2 9

24

IBM DB2 9

1. Application A holds an Exclusive lock on table TAB1 and needs to acquire an Exclusive lock on table TAB2. Application B holds an Exclusive lock on table TAB2 and needs to acquire an Exclusive lock on table TAB1. If lock timeout is set to -1 and both applications are using the Read Stability isolation level, which of the following will occur?  A. Applications A and B will cause a deadlock situation  B. Application B will read the copy of table TAB1 that was loaded into memory when Application A first read it  C. Application B will read the data in table TAB1 and see uncommitted changes made by Application A  D. Application B will be placed in a lock-wait state until Application A releases its lock 25

IBM DB2 9

2. Two applications have created a deadlock cycle in the locking subsystem. If lock timeout is set to 30 and both applications were started at the same time, what action will the deadlock detector take when it "wakes up" and discovers the deadlock?  A. It will randomly pick an application and rollback its current transaction  B. It will rollback the current transactions of both applications  C. It will wait 30 seconds, then rollback the current transactions of both applications if the deadlock has not been resolved  D. It will go back to sleep for 30 seconds, then if the deadlock still exists, it will randomly pick an application and rollback its current transaction

26

IBM DB2 9

3. Application A is running under the Repeatable Read isolation level and holds an Update lock on table TAB1. Application B wants to query table TAB1 and cannot wait for Application A to release its lock. Which isolation level should Application B run under to achieve this objective?

A. Repeatable Read B. Read Stability C. Cursor Stability D. Uncommitted Read 27

IBM DB2 9

4. Application A holds a lock on a row in table TAB1. If lock timeout is set to 20, what will happen when Application B attempts to acquire a compatible lock on the same row?  A. Application B will acquire the lock it needs  B. Application A will be rolled back if it still holds its lock after 20 seconds have elapsed  C. Application B will be rolled back if Application A still holds its lock after 20 seconds have elapsed  D. Both applications will be rolled back if Application A still holds its lock after 20 seconds have elapsed 28

IBM DB2 9

5. To which of the following resources can a lock NOT be applied? A. Tablespaces B. Buffer pools C. Tables D. Rows

29

IBM DB2 9

6. Which of the following modes, when used with the LOCK TABLE statement, will cause the DB2 Database Manager to acquire a table-level lock that prevents other concurrent transactions from accessing data stored in the table while the owning transaction is active? A. SHARE MODE B. ISOLATED MODE C. EXCLUSIVE MODE D. RESTRICT MODE 30

IBM DB2 9

7. An application has acquired a Share lock on a row in a table and now wishes to update the row. Which of the following statements is true?  A. The application must release the row-level Share lock it holds and acquire an Update lock on the row  B. The application must release the row-level Share lock it holds and acquire an Update lock on the table  C. The row-level Share lock will automatically be converted to a row-level Update lock  D. The row-level Share lock will automatically be escalated to a table-level Update lock 31

IBM DB2 9

8. Application A wants to read a subset of rows from table TAB1 multiple times. Which of the following isolation levels should Application A use to prevent other users from making modifications and additions to table TAB1 that will affect the subset of rows read? A. Repeatable Read B. Read Stability C. Cursor Stability D. Uncommitted Read 32

IBM DB2 9

9. A transaction using the Read Stability isolation level scans the same table multiple times before it terminates. Which of the following can occur within this transaction's processing?  A. Uncommitted changes made by other transactions can be seen from one scan to the next.  B. Rows removed by other transactions that appeared in one scan will no longer appear in subsequent scans.  C. Rows added by other transactions that did not appear in one scan can be seen in subsequent scans.  D. Rows that have been updated can be changed by other transactions from one scan to the next. 33

IBM DB2 9

10. Application A issues the following SQL statements within a single transaction using the Uncommitted Read isolation level: SELECT * FROM department WHERE deptno = 'A00'; UPDATE department SET mgrno = '000100' WHERE deptno = 'A00';

As long as the transaction is not committed, which of the following statements is FALSE?  A. Other applications not running under the Uncommitted Read isolation level are prohibited from reading the updated row  B. Application A is allowed to read data stored in another table, even if an Exclusive lock is held on that table  C. Other applications running under the Uncommitted Read isolation level are allowed to read the updated row  D. Application A is not allowed to insert new rows into the DEPARTMENT table as long as the current transaction remains active

34

IBM DB2 9

Grazie

Hebrew

Italian

Gracias

Spanish

Russian

Arabic

Traditional Chinese

Obrigado

Thank You

Portuguese

Merci

French

Danke

German

English

Thai Simplified Chinese

Japanese

35

Tamil

Korean

Related Documents

6) Data Con Currency
June 2020 18
Con Currency Control
October 2019 22
Erlang And Con Currency
November 2019 25
Con Currency In
November 2019 19
13 Con Currency
November 2019 13
Currency
November 2019 43

More Documents from ""