• Non ci sono risultati.

DatabasesTransactionsElena Baralisand Tania Cerquitelli©2013 Politecnico di Torino1

N/A
N/A
Protected

Academic year: 2021

Condividi "DatabasesTransactionsElena Baralisand Tania Cerquitelli©2013 Politecnico di Torino1"

Copied!
5
0
0

Testo completo

(1)

D B

M

G

SQL language: other definitions

Transactions

D B

M

G

2

Transactions

Introduction Transactions in SQL Properties of transactions

D B

M

G

Transactions

Introduction

D B

M

G

4

Example of application

Banking operations cash withdrawal from a current account using a cash card

depositing cash on a current account

B

Cash withdrawal

Operations

specify the amount required check availability

memorize transaction update balance

enable withdrawal of the amount required All the operations have to be carried out correctly, otherwise the cash cannot be withdrawn

B

Cash withdrawal

What happens if a co-signatory of a joint account makes another cash withdrawal?

What happens if there is a malfunction?

(2)

D B

M

G

7

Cash deposit

Operations

check the amount paid in memorize the transaction update the balance

All the operations have to be carried out

correctly, otherwise the cash cannot be deposited

D B

M

G

8

Cash deposit

What happens if another person pays cash into the same account?

What happens if there is a malfunction?

D B

M

G

9

Example: banking operations

The bank database is a multi-user environment various operators can work simultaneously on the same portion of data

The correct management of the information requires

mechanisms for the management of simultaneous access to the database

Mechanisms for the recovery of the correct state of the database in the case of malfunction

D B

M

G

10

Transactions

It is necessary when several users can simultaneously access the data It provides efficient mechanisms for

managing competing access to data recovery after a malfunction

D B

M

G

11

Transactions

A transaction is a sequence of operations that represents an elementary unit of work can end in success or failure

in the case of success, the result of the operations has to be permanent in the database

in the case of failure, the database has to return to the original state before the transaction was initiated

D B

M

G

12

Transactional system

A system that makes a mechanism available for the definition and execution of transactions is called a transactional system

The DBMS contain architecture blocks that offer transaction management services

(3)

D B

M

G

Transactions

Transactions in SQL

D B

M

G

14

Transaction

A transaction is

a logical unit of work, which cannot be broken down any further

a sequence of operations (SQL instructions) to change data, which takes the database from a consistent state to another consistent state

it is not necessary to conserve the consistency of the intermediate states

D B

M

G

15

Beginning a transaction

To define the beginning of a transaction, the SQL language uses the instruction

START TRANSACTION

Usually the instruction to begin a transaction is omitted

the beginning is implicit for

the first SQL instruction of the programme that accesses the database

the first SQL instruction following the instruction ending the previous transaction

D B

M

G

16

Ending a transaction

The SQL language has instructions for defining the end of a transaction

Transaction successful COMMIT[WORK]

the action associated with the instruction is called commit

Transaction failed ROLLBACK[WORK]

the action associated with the instruction is called abort

B

Commit

Action executed when a transaction ends with success

The database is in a new (final) correct state The changes to the data executed by the transaction become

permanent

visibile to other users

B

Rollback

Action executed when a transaction ends because of an error

for example, an error in application

All the operations modifying the data executed during the transaction are “annulled”

The database returns to the state prior to the beginning of the transaction

the data is once more visible to the other users

(4)

D B

M

G

19

Example

Transfer the sum of 100 from current account number IT92X0108201004300000322229 to current account number IT32L0201601002410000278976 START TRANSACTION;

UPDATE Account

SET Balance= Balance + 100

WHEREIBAN='IT92X0108201004300000322229';

UPDATE Account

SET Balance = Balance - 100

WHEREIBAN= 'IT32L0201601002410000278976';

COMMIT;

D B

M

G

Transactions

Transaction properties

D B

M

G

21

Transaction properties

The principal properties of transactions are Atomicity

Consistency Isolation Durability

They are summarized by the English acronym ACID

D B

M

G

22

Atomicity

A transaction is an indivisible unit (atom) of work all the operations contained in the transaction have to be executed

or none of the operations contained in the transaction have to be executed

the transaction has no effect on the database The database cannot remain in an intermediate state arrived at during the processing of a transaction

D B

M

G

23

Consistency

The execution of a transaction has to take the database

from an initial state of consistency (correct) to a final state of consistency

Correctness is verified by integrity constraints defined on the database

When there is a violation of the integrity constraint the system intervenes

to annulthe transaction

or to modify the state of the database by eliminating the violation of the constraint

D B

M

G

24

Isolation

The execution of a transaction is independent from the simultaneous execution of other transactions The effects of a transaction are not visible by other transactions until the transaction is terminated

the visibility of unstable intermediate states is avoided

an intermediate state can be annulled by a subsequent rollback

in the case of rollback, it is necessary to rollback the other transactions that have observed the intermediate state (domino effect)

(5)

D B

M

G

25

Durability

The effect of a transaction that has executed a commit is memorized permanently

the changes to the data carried out by a transaction ending successfully are permanent after a commit It guarantees the reliability of the operations of data modification

the DBMS provides mechanisms for recovery to the correct state of the database after a malfunction has occurred

Riferimenti

Documenti correlati

Find the codes of the suppliers that supply at least all of the products supplied by supplier S2 We must count. the number of products supplied by S2 the number of products

The WHERE clause contains join conditions between the attributes listed in the SELECT clauses of relational expressions A and B. D B

The tuple identified by code P1 is updated Update the features of product P1: assign Yellow to Color, increase the size by 2 and assign NULL to Store.

Integrity constraints are checked after each SQL command that may cause their violation Insert or update operations on the referencing table that violate the constraints are

The view is updatable CREATE VIEW SUPPLIER_LONDON AS SELECT SId, SName, #Employees, City FROM S.

The database is in a new (final) correct state The changes to the data executed by the transaction

If an SQL command returns a single row it is sufficient to specify in which host language variable the result of the command shall be stored If an SQL command returns a table (i.e.,

if Rossi has propagated the privilege to other users, the privilege is revoked in cascade if Rossi has created a view using the SELECT privilege, the view is removed. REVOKE