Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data...

70
Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator Transaction Management Storage Management Overall System Structure

Transcript of Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data...

Page 1: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

IntroductionIntroduction

Database Management Systems

Purpose of Database Systems

View of Data

Data Models

Database Languages

Database Users

Database Administrator

Transaction Management

Storage Management

Overall System Structure

Page 2: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Database Management System (DBMS)Database Management System (DBMS)

Collection of interrelated data Set of programs to access the data DBMS contains information about a particular enterprise DBMS provides an environment that is both convenient and

efficient to use. Database Applications:

Banking: all transactions Airlines: reservations, schedules Universities: registration, grades Sales: customers, products, purchases Manufacturing: production, inventory, orders, supply chain Human resources: employee records, salaries, tax deductions

Databases touch all aspects of our lives

Page 3: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Purpose of Database SystemPurpose of Database System

In the early days, database applications were built on top of file systems

Drawbacks of using file systems to store data: Data redundancy and inconsistency

Multiple file formats, duplication of information in different files

Difficulty in accessing data

Need to write a new program to carry out each new task

Data isolation — multiple files and formats

Integrity problems

Integrity constraints (e.g. account balance > 0) become part of program code

Hard to add new constraints or change existing ones

Page 4: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Purpose of Database Systems (Cont.)Purpose of Database Systems (Cont.)

Drawbacks of using file systems (cont.) Atomicity of updates

Failures may leave database in an inconsistent state with partial updates carried out

E.g. transfer of funds from one account to another should either complete or not happen at all

Concurrent access by multiple users

Concurrent access needed for performance

Uncontrolled concurrent accesses can lead to inconsistencies

– E.g. two people reading a balance and updating it at the same time

Security problems

Database systems offer solutions to all the above problems

Page 5: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Levels of AbstractionLevels of Abstraction

Physical level describes how a record (e.g., customer) is stored.

Logical level: describes data stored in database, and the relationships among the data.

type customer = recordname : string;street : string;city : integer;

end;

View level: application programs hide details of data types. Views can also hide information (e.g., salary) for security purposes.

Page 6: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

View of DataView of Data

An architecture for a database system

Page 7: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Instances and SchemasInstances and Schemas

Similar to types and values of variables in programming languages Schema – the logical structure of the database

e.g., the database consists of information about a set of customers and accounts and the relationship between them)

Analogous to type information of a variable in a program Physical schema: database design at the physical level Logical schema: database design at the logical level

Instance – the actual content of the database at a particular point in time Analogous to the value of a variable

Physical Data Independence – the ability to modify the physical schema without changing the logical schema Applications depend on the logical schema In general, the interfaces between the various levels and components should be

well defined so that changes in some parts do not seriously influence others.

Page 8: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Data ModelsData Models

A collection of conceptual tools for describing data data relationships data semantics data constraints

Entity-Relationship model

Relational model

Other models: object-oriented model semi-structured data models Older models: network model and hierarchical model

Page 9: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Entity-Relationship ModelEntity-Relationship Model

Example of schema in the entity-relationship model

Page 10: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Entity Relationship Model (Cont.)Entity Relationship Model (Cont.)

E-R model of real world Entities (objects)

E.g. customers, accounts, bank branch

Relationships between entities

E.g. Account A-101 is held by customer Johnson

Relationship set depositor associates customers with accounts

Widely used for database design Database design in E-R model usually converted to design in the

relational model (coming up next) which is used for storage and processing

Page 11: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Relational ModelRelational Model

Example of tabular data in the relational model

customer-name

Customer-idcustomer-street

customer-city

account-number

Johnson

Smith

Johnson

Jones

Smith

192-83-7465

019-28-3746

192-83-7465

321-12-3123

019-28-3746

Alma

North

Alma

Main

North

Palo Alto

Rye

Palo Alto

Harrison

Rye

A-101

A-215

A-201

A-217

A-201

Attributes

Page 12: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

A Sample Relational DatabaseA Sample Relational Database

Page 13: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Data Definition Language (DDL)Data Definition Language (DDL)

Specification notation for defining the database schema E.g.

create table account ( account-number char(10), balance integer)

DDL compiler generates a set of tables stored in a data dictionary

Data dictionary contains metadata (i.e., data about data) Database schema

Data storage and definition language

language in which the storage structure and access methods used by the database system are specified

usually an extension of the data definition language

Page 14: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Data Manipulation Language (DML)Data Manipulation Language (DML)

Language for accessing and manipulating the data organized by the appropriate data model DML also known as query language

Two classes of languages Procedural – user specifies what data is required and how to get

those data

Nonprocedural – user specifies what data is required without specifying how to get those data

SQL is the most widely used query language

Page 15: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

SQLSQL

SQL: widely used non-procedural language E.g. find the name of the customer with customer-id 192-83-7465

select customer.customer-namefrom customerwhere customer.customer-id = ‘192-83-7465’

E.g. find the balances of all accounts held by the customer with customer-id 192-83-7465

select account.balancefrom depositor, accountwhere depositor.customer-id = ‘192-83-7465’ and depositor.account-number = account.account-

number

Application programs generally access databases through one of language extensions to allow embedded SQL application program interface (e.g. ODBC/JDBC) which allow SQL

queries to be sent to a database

Page 16: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Database UsersDatabase Users

People who work with databases can be categorized as either database users or database administrators

Users are differentiated by the way they expect to interact with the system

Naive users – invoke one of the permanent application programs that have been written previously E.g. people like bank tellers, accessing database over the web

Application programmers – interact with system through DML calls

Sophisticated users – form requests in a database query language

Specialized users – write specialized database applications that do not fit into the traditional data processing framework

Page 17: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Database AdministratorDatabase Administrator

Coordinates all the activities of the database system; the database administrator has a good understanding of the enterprise’s information resources and needs.

Database administrator's duties include: Schema definition

Storage structure and access method definition

Schema and physical organization modification

Granting user authority to access the database

Specifying integrity constraints

Acting as liaison with users

Monitoring performance and responding to changes in requirements

Page 18: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Transaction ManagementTransaction Management

Atomicity is the requirement on a collection of operations on the database is that either all or non occur

A transaction is a collection of operations that performs a single logical function in a database application

Transaction-management component ensures that the database remains in a consistent (correct) state despite system failures (e.g., power failures and operating system crashes) and transaction failures.

Concurrency-control manager controls the interaction among the concurrent transactions, to ensure the consistency of the database.

Page 19: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Storage ManagementStorage Management

Storage manager is a program module that provides the interface between the low-level data stored in the database and the application programs and queries submitted to the system.

The storage manager is responsible to the following tasks: interaction with the file manager

efficient storing, retrieving and updating of data

Page 20: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Overall System Structure Overall System Structure

Page 21: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

Application ArchitecturesApplication Architectures

Two-tier architecture: E.g. client programs using ODBC/JDBC to communicate with a databaseThree-tier architecture: E.g. web-based applications, and applications built using “middleware”

Page 22: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.22Database System Concepts

Entity-Relationship ModelEntity-Relationship Model

Design Process

Modeling

Constraints

E-R Diagram

Design Issues

Weak Entity Sets

Extended E-R Features

Design of the Bank Database

Reduction to Relation Schemas

Database Design

Page 23: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.23Database System Concepts

ModelingModeling

A database can be modeled as: a collection of entities,

relationship among entities.

An entity is an object that exists and is distinguishable from other objects.

Example: specific person, company, event, plant

Entities have attributes Example: people have names and addresses

An entity set is a set of entities of the same type that share the same properties. Example: set of all persons, companies, trees, holidays

Page 24: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.24Database System Concepts

Entity Sets Entity Sets customercustomer and and loanloan

customer_id customer_ customer_ customer_ loan_ amount name street city number

Page 25: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.25Database System Concepts

Relationship SetsRelationship Sets

A relationship is an association among several entities

Example:Hayes depositor A-102

customer entity relationship set account entity

A relationship set is a mathematical relation among n 2 entities, each taken from entity sets

{(e1, e2, … en) | e1 E1, e2 E2, …, en En}

where (e1, e2, …, en) is a relationship

Example:

(Hayes, A-102) depositor

Page 26: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.26Database System Concepts

Relationship Set Relationship Set borrowerborrower

Page 27: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.27Database System Concepts

Relationship Sets (Cont.)Relationship Sets (Cont.)

An attribute can also be property of a relationship set. For instance, the depositor relationship set between entity sets

customer and account may have the attribute access-date

Page 28: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.28Database System Concepts

Degree of a Relationship SetDegree of a Relationship Set

Refers to number of entity sets that participate in a relationship set.

Relationship sets that involve two entity sets are binary (or degree two). Generally, most relationship sets in a database system are binary.

Relationship sets may involve more than two entity sets.

Relationships between more than two entity sets are rare. Most relationships are binary. (More on this later.)

Example: Suppose employees of a bank may have jobs (responsibilities) at multiple branches, with different jobs at different branches. Then there is a ternary relationship set between entity sets employee, job, and branch

Page 29: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.29Database System Concepts

AttributesAttributes

An entity is represented by a set of attributes, that is descriptive properties possessed by all members of an entity set.

Domain – the set of permitted values for each attribute

Attribute types: Simple and composite attributes.

Single-valued and multi-valued attributes

Example: multivalued attribute: phone_numbers

Derived attributes

Can be computed from other attributes

Example: age, given date_of_birth

Example:

customer = (customer_id, customer_name, customer_street, customer_city )

loan = (loan_number, amount )

Page 30: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.30Database System Concepts

Composite AttributesComposite Attributes

Page 31: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.31Database System Concepts

Mapping Cardinality ConstraintsMapping Cardinality Constraints

Express the number of entities to which another entity can be associated via a relationship set.

Most useful in describing binary relationship sets.

For a binary relationship set the mapping cardinality must be one of the following types: One to one

One to many

Many to one

Many to many

Page 32: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.32Database System Concepts

Mapping CardinalitiesMapping Cardinalities

One to one One to many

Note: Some elements in A and B may not be mapped to any elements in the other set

Page 33: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.33Database System Concepts

Mapping Cardinalities Mapping Cardinalities

Many to one Many to many

Note: Some elements in A and B may not be mapped to any elements in the other set

Page 34: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.34Database System Concepts

KeysKeys

A super key of an entity set is a set of one or more attributes whose values uniquely determine each entity.

A candidate key of an entity set is a minimal super key Customer_id is candidate key of customer

account_number is candidate key of account

Although several candidate keys may exist, one of the candidate keys is selected to be the primary key.

Page 35: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.35Database System Concepts

E-R DiagramsE-R Diagrams

Rectangles represent entity sets.

Diamonds represent relationship sets.

Lines link attributes to entity sets and entity sets to relationship sets.

Ellipses represent attributes

Double ellipses represent multivalued attributes.

Dashed ellipses denote derived attributes.

Underline indicates primary key attributes (will study later)

Page 36: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.36Database System Concepts

E-R Diagram With Composite, Multivalued, and E-R Diagram With Composite, Multivalued, and Derived AttributesDerived Attributes

Page 37: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.37Database System Concepts

Relationship Sets with AttributesRelationship Sets with Attributes

Page 38: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.38Database System Concepts

RolesRoles

Entity sets of a relationship need not be distinct

The labels “manager” and “worker” are called roles; they specify how employee entities interact via the works_for relationship set.

Roles are indicated in E-R diagrams by labeling the lines that connect diamonds to rectangles.

Role labels are optional, and are used to clarify semantics of the relationship

Page 39: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.39Database System Concepts

Cardinality ConstraintsCardinality Constraints

We express cardinality constraints by drawing either a directed line (), signifying “one,” or an undirected line (—), signifying “many,” between the relationship set and the entity set.

One-to-one relationship: A customer is associated with at most one loan via the relationship

borrower

A loan is associated with at most one customer via borrower

Page 40: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.40Database System Concepts

One-To-Many RelationshipOne-To-Many Relationship

In the one-to-many relationship a loan is associated with at most one customer via borrower, a customer is associated with several (including 0) loans via borrower

Page 41: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.41Database System Concepts

Many-To-One RelationshipsMany-To-One Relationships

In a many-to-one relationship a loan is associated with several (including 0) customers via borrower, a customer is associated with at most one loan via borrower

Page 42: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.42Database System Concepts

Many-To-Many RelationshipMany-To-Many Relationship

A customer is associated with several (possibly 0) loans via borrower

A loan is associated with several (possibly 0) customers via borrower

Page 43: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.43Database System Concepts

Participation of an Entity Set in a Participation of an Entity Set in a Relationship SetRelationship Set

Total participation (indicated by double line): every entity in the entity set participates in at least one relationship in the relationship set

E.g. participation of loan in borrower is total

every loan must have a customer associated to it via borrower

Partial participation: some entities may not participate in any relationship in the relationship set

Example: participation of customer in borrower is partial

Page 44: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.44Database System Concepts

E-RE-R Diagram with a Ternary Relationship Diagram with a Ternary Relationship

Page 45: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.45Database System Concepts

Design IssuesDesign Issues

Use of entity sets vs. attributesChoice mainly depends on the structure of the enterprise being modeled, and on the semantics associated with the attribute in question.

Use of entity sets vs. relationship setsPossible guideline is to designate a relationship set to describe an action that occurs between entities

Binary versus n-ary relationship setsAlthough it is possible to replace any nonbinary (n-ary, for n > 2) relationship set by a number of distinct binary relationship sets, a n-ary relationship set shows more clearly that several entities participate in a single relationship.

Placement of relationship attributes

Page 46: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.46Database System Concepts

Binary Vs. Non-Binary RelationshipsBinary Vs. Non-Binary Relationships

Some relationships that appear to be non-binary may be better represented using binary relationships E.g. A ternary relationship parents, relating a child to his/her father

and mother, is best replaced by two binary relationships, father and mother

Using two binary relationships allows partial information (e.g. only mother being know)

But there are some relationships that are naturally non-binary

Example: works_on

Page 47: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.47Database System Concepts

Converting Non-Binary Relationships to Converting Non-Binary Relationships to Binary FormBinary Form

In general, any non-binary relationship can be represented using binary relationships by creating an artificial entity set. Replace R between entity sets A, B and C by an entity set E, and three relationship

sets:

1. RA, relating E and A 2.RB, relating E and B

3. RC, relating E and C

Create a special identifying attribute for E

Add any attributes of R to E

For each relationship (ai , bi , ci) in R, create

1. a new entity ei in the entity set E 2. add (ei , ai ) to RA

3. add (ei , bi ) to RB 4. add (ei , ci ) to RC

Page 48: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.48Database System Concepts

Converting Non-Binary Relationships Converting Non-Binary Relationships (Cont.)(Cont.)

Also need to translate constraints Translating all constraints may not be possible

There may be instances in the translated schema thatcannot correspond to any instance of R

Exercise: add constraints to the relationships RA, RB and RC

to ensure that a newly created entity corresponds to exactly one entity in each of entity sets A, B and C

We can avoid creating an identifying attribute by making E a weak entity set (described shortly) identified by the three relationship sets

Page 49: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.49Database System Concepts

Mapping Cardinalities affect ER DesignMapping Cardinalities affect ER Design

Can make access-date an attribute of account, instead of a relationship attribute, if each account can have only one customer

That is, the relationship from account to customer is many to one, or equivalently, customer to account is one to many

Page 50: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.50Database System Concepts

Weak Entity SetsWeak Entity Sets

An entity set that does not have a primary key is referred to as a weak entity set.

The existence of a weak entity set depends on the existence of a identifying entity set it must relate to the identifying entity set via a total, one-to-many

relationship set from the identifying to the weak entity set

Identifying relationship depicted using a double diamond

The discriminator (or partial key) of a weak entity set is the set of attributes that distinguishes among all the entities of a weak entity set.

The primary key of a weak entity set is formed by the primary key of the strong entity set on which the weak entity set is existence dependent, plus the weak entity set’s discriminator.

Page 51: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.51Database System Concepts

Weak Entity Sets (Cont.)Weak Entity Sets (Cont.)

We depict a weak entity set by double rectangles.

We underline the discriminator of a weak entity set with a dashed line.

payment_number – discriminator of the payment entity set

Primary key for payment – (loan_number, payment_number)

Page 52: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.52Database System Concepts

Extended E-R Features: SpecializationExtended E-R Features: Specialization

Top-down design process; we designate subgroupings within an entity set that are distinctive from other entities in the set.

These subgroupings become lower-level entity sets that have attributes or participate in relationships that do not apply to the higher-level entity set.

Depicted by a triangle component labeled ISA (E.g. customer “is a” person).

Attribute inheritance – a lower-level entity set inherits all the attributes and relationship participation of the higher-level entity set to which it is linked.

Page 53: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.53Database System Concepts

Specialization ExampleSpecialization Example

Page 54: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.54Database System Concepts

Extended ER Features: GeneralizationExtended ER Features: Generalization

A bottom-up design process – combine a number of entity sets that share the same features into a higher-level entity set.

Specialization and generalization are simple inversions of each other; they are represented in an E-R diagram in the same way.

The terms specialization and generalization are used interchangeably.

Page 55: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.55Database System Concepts

Specialization and Generalization (Cont.)Specialization and Generalization (Cont.)

Can have multiple specializations of an entity set based on different features.

E.g. permanent_employee vs. temporary_employee, in addition to officer vs. secretary vs. teller

Each particular employee would be a member of one of permanent_employee or temporary_employee,

and also a member of one of officer, secretary, or teller

The ISA relationship also referred to as superclass - subclass relationship

Page 56: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.56Database System Concepts

Design Constraints on a Design Constraints on a Specialization/GeneralizationSpecialization/Generalization

Constraint on which entities can be members of a given lower-level entity set. condition-defined

Example: all customers over 65 years are members of senior-citizen entity set; senior-citizen ISA person.

user-defined

Constraint on whether or not entities may belong to more than one lower-level entity set within a single generalization. Disjoint

an entity can belong to only one lower-level entity set

Noted in E-R diagram by writing disjoint next to the ISA triangle

Overlapping

an entity can belong to more than one lower-level entity set

Page 57: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.57Database System Concepts

DesignDesign ConstraintsConstraints on a on a Specialization/Generalization (Cont.)Specialization/Generalization (Cont.)

Completeness constraint -- specifies whether or not an entity in the higher-level entity set must belong to at least one of the lower-level entity sets within a generalization. total : an entity must belong to one of the lower-level entity

sets

partial: an entity need not belong to one of the lower-level entity sets

Page 58: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.58Database System Concepts

AggregationAggregation

Consider the ternary relationship works_on, which we saw earlier

Suppose we want to record managers for tasks performed by an employee at a branch

Page 59: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.59Database System Concepts

Aggregation (Cont.)Aggregation (Cont.)

Relationship sets works_on and manages represent overlapping information Every manages relationship corresponds to a works_on relationship

However, some works_on relationships may not correspond to any manages relationships

So we can’t discard the works_on relationship

Eliminate this redundancy via aggregation Treat relationship as an abstract entity

Allows relationships between relationships

Abstraction of relationship into new entity

Without introducing redundancy, the following diagram represents: An employee works on a particular job at a particular branch

An employee, branch, job combination may have an associated manager

Page 60: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.60Database System Concepts

E-R Diagram With AggregationE-R Diagram With Aggregation

Page 61: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.61Database System Concepts

E-R Diagram for a Banking EnterpriseE-R Diagram for a Banking Enterprise

Page 62: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.62Database System Concepts

Integrity ConstraintsIntegrity Constraints

Integrity constraints guard against accidental damage to the database, by ensuring that authorized changes to the database do not result in a loss of data consistency. A checking account must have a balance greater than

$10,000.00

A salary of a bank employee must be at least $4.00 an hour

A customer must have a (non-null) phone number

Page 63: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.63Database System Concepts

Constraints on a Single Relation Constraints on a Single Relation

not null

primary key

unique

check (P ), where P is a predicate

Page 64: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.64Database System Concepts

Not Null Constraint Not Null Constraint

Declare branch_name for branch is not null

branch_name char(15) not null

Declare the domain Dollars to be not null

create domain Dollars numeric(12,2) not null

Page 65: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.65Database System Concepts

The Unique ConstraintThe Unique Constraint

unique ( A1, A2, …, Am)

The unique specification states that the attributes

A1, A2, … Am

Form a candidate key.

Candidate keys are permitted to be non null (in contrastto primary keys).

Page 66: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.66Database System Concepts

The check clauseThe check clause

check (P ), where P is a predicate

Example: Declare branch_name as the primary key for branch and ensure that the values of assets are non-negative.

create table branch (branch_name char(15), branch_city char(30), assets integer, primary key (branch_name), check (assets >= 0))

Page 67: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.67Database System Concepts

The check clause (Cont.)The check clause (Cont.)

The check clause in SQL-92 permits domains to be restricted: Use check clause to ensure that an hourly_wage domain allows

only values greater than a specified value.

create domain hourly_wage numeric(5,2)constraint value_test check(value > = 4.00)

The domain has a constraint that ensures that the hourly_wage is greater than 4.00

The clause constraint value_test is optional; useful to indicate which constraint an update violated.

Page 68: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.68Database System Concepts

Referential IntegrityReferential Integrity

Ensures that a value that appears in one relation for a given set of attributes also appears for a certain set of attributes in another relation. Example: If “Perryridge” is a branch name appearing in one of the

tuples in the account relation, then there exists a tuple in the branch relation for branch “Perryridge”.

Primary and candidate keys and foreign keys can be specified as part of the SQL create table statement: The primary key clause lists attributes that comprise the primary key.

The unique key clause lists attributes that comprise a candidate key.

The foreign key clause lists the attributes that comprise the foreign key and the name of the relation referenced by the foreign key. By default, a foreign key references the primary key attributes of the referenced table.

Page 69: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.69Database System Concepts

Referential Integrity in SQL – ExampleReferential Integrity in SQL – Example

create table customer(customer_name char(20),customer_street char(30),customer_city char(30),primary key (customer_name ))

create table branch(branch_name char(15),branch_city char(30),assets numeric(12,2),primary key (branch_name ))

Page 70: Introduction Introduction Database Management Systems Purpose of Database Systems View of Data Data Models Database Languages Database Users Database Administrator.

©Silberschatz, Korth and Sudarshan1.70Database System Concepts

Referential Integrity in SQL – Example (Cont.)Referential Integrity in SQL – Example (Cont.)

create table account(account_number char(10),branch_name char(15),balance integer,primary key (account_number), foreign key (branch_name) references branch )

create table depositor(customer_name char(20),account_number char(10),primary key (customer_name, account_number),foreign key (account_number ) references account,foreign key (customer_name ) references customer )