Module 2 Dbms 1st Internal
Module 2 Dbms 1st Internal
Introduction to Databases
Database Management System
Subject Code: 18CS53
CONTENTS
• Relational Model: Relational Model Concepts
– Relational Model Constraints and relational database schemas
– Update operations
– transactions and dealing with constraint violations.
• Relational Algebra:
– Unary and Binary relational operations
– additional relational operations (aggregate, grouping, etc.)
– Examples of Queries in relational algebra.
• Mapping Conceptual Design into a Logical Design:
-- Relational Database Design using ER-to-Relational mapping.
• SQL:
• SQL data definition and data types
• Specifying constraints in SQL
• Retrieval queries in SQL, INSERT, DELETE, and UPDATE statements in SQL
• Additional features of SQL.
Relational Model Concepts
• The relational model represents the database
as a collection of relations.
Slide 5- 5
Informal Definitions
• Informally, a relation looks like a table of values.
Slide 5- 6
Example of a Relation
Slide 5- 7
Informal Definitions
• Key of a Relation:
– Each row has a value of a data item (or set of items) that
uniquely identifies that row in the table
• Called the key
Slide 5- 8
Formal Definitions - Schema
• The Schema (or description) of a Relation:
– Denoted by R(A1, A2, .....An)
– R is the name of the relation
– The attributes of the relation are A1, A2, ..., An
• Example:
CUSTOMER (Cust-id, Cust-name, Address, Phone#)
– CUSTOMER is the relation name
– Defined over the four attributes: Cust-id, Cust-name, Address,
Phone#
• Each attribute has a domain or a set of valid values.
• Domain is the set of allowable values for one or more
attributes.
– For example, the domain of Cust-id is 6 digit numbers.
Slide 5- 9
Comparative Terms
Formal Oracle
• Notation
•
Course (courseno, subject, equipment)
•
Student(studno,name,hons)
• Enrol(studno,courseno,labmark)
Slide 5- 10
Relational Model Terminology
• Tuple is a row of a relation.
Slide 5- 11
Definition Summary
Informal Terms Formal Terms
Table Relation
Column Header Attribute
All possible Column Domain
Values
Row Tuple
Table Definition Schema of a Relation
Populated Table State of the Relation
Slide 5- 12
Example – A relation STUDENT
Slide 5- 13
Properties of Relations
• Relation name is distinct from all other relation names in
relational schema.
Slide 5- 14
Properties of Relations
• Order of attributes has no significance.
Slide 5- 15
Relational Integrity Constraints
• Constraints are conditions that must hold on all valid relation
states.
Slide 5- 16
Key Constraints
• Superkey:
– An attribute, or a set of attributes whose
values together uniquely identify a tuple
in a relation.
Slide 5- 19
Key Constraints (continued)
• If a relation has several candidate keys, one is chosen
arbitrarily to be the primary key.
– The primary key attributes are underlined.
• Example: Consider the CAR relation schema:
– CAR(State, Reg#, SerialNo, Make, Model, Year)
– We chose SerialNo as the primary key
• The primary key value is used to uniquely identify each tuple
in a relation
– Provides the tuple identity
• Also used to reference the tuple from another tuple
– General rule: Choose as primary key the smallest of the
candidate keys (in terms of size)
Slide 5- 20
CAR table with two candidate keys –
License_Number chosen as Primary Key
Slide 5- 21
Entity Integrity
• Entity Integrity:
– The primary key attributes PK of each relation cannot have
null values.
• This is because primary key values are used to identify the
individual tuples.
• If PK has several attributes, null is not allowed in any of these
attributes
Slide 5- 22
Referential Integrity
• A constraint involving two relations
– Used to specify a relationship among tuples in two relations,
the referencing relation and the referenced relation.
Slide 5- 23
Referential Integrity (or foreign key)
Constraint
• The value in the foreign key column (or
columns) FK of the the referencing relation R1
can be either:
• (1) a value of an existing primary key value of a
corresponding primary key PK in the referenced
relation R2, or
• (2) a null.
Slide 5- 25
Displaying a relational database schema
and its constraints
• Each relation schema can be displayed as a row of attribute
names
• The name of the relation is written above the attribute names
• The primary key attribute (or attributes) will be underlined
• A foreign key (referential integrity) constraints is displayed as
a directed arc (arrow) from the foreign key attributes to the
referenced table
– Can also point the the primary key of the referenced relation for
clarity
• Next slide shows the COMPANY relational schema diagram
Slide 5- 26
Referential Integrity Constraints for COMPANY DB
Slide 5- 27
Populated database state
• Each relation will have many tuples in its
current relation state
• Whenever the database is changed, a new state
arises
• Basic operations for changing the database:
– INSERT a new tuple in a relation
– DELETE an existing tuple from a relation
– MODIFY an attribute of an existing tuple
• Next slide shows an example state for the
COMPANY database
Slide 5- 28
Populated database state for COMPANY
Slide 5- 29
Update Operations on Relations
• INSERT a tuple.
• DELETE a tuple.
• MODIFY a tuple.
• Integrity constraints should not be violated by the
update operations.
• Several update operations may have to be grouped
together.
• Updates may propagate to cause other updates
automatically. This may be necessary to maintain
integrity constraints.
Slide 5- 30
Update Operations on Relations
• In case of integrity violation, several actions
can be taken:
– Cancel the operation that causes the violation
(RESTRICT or REJECT option)
– Perform the operation but inform the user of the
violation
– Trigger additional updates so the violation is
corrected (CASCADE option, SET NULL option)
– Execute a user-specified error-correction routine
Slide 5- 31
Possible violations for each operation
• INSERT may violate any of the constraints:
– Domain constraint:
• if one of the attribute values provided for the new tuple is not of
the specified attribute domain
– Key constraint:
• if the value of a key attribute in the new tuple already exists in
another tuple in the relation
– Referential integrity:
• if a foreign key value in the new tuple references a primary key
value that does not exist in the referenced relation
– Entity integrity:
• if the primary key value is null in the new tuple
Slide 5- 32
Possible violations for each operation
• DELETE may violate only referential integrity:
– If the primary key value of the tuple being deleted is referenced
from other tuples in the database
• Can be handled by several actions: RESTRICT, CASCADE, SET NULL
(see Chapter 8 for more details)
– RESTRICT option: reject the deletion
– CASCADE option: propagate the new primary key value into the
foreign keys of the referencing tuples
– SET NULL option: set the foreign keys of the referencing tuples to
NULL
– One of the above options must be specified during database
design for each foreign key constraint
Slide 5- 33
Possible violations for each operation
• UPDATE may violate domain constraint and NOT NULL
constraint on an attribute being modified
• Any of the other constraints may also be violated, depending
on the attribute being updated:
– Updating the primary key (PK):
• Similar to a DELETE followed by an INSERT
• Need to specify similar options to DELETE
– Updating a foreign key (FK):
• May violate referential integrity
– Updating an ordinary attribute (neither PK nor FK):
• Can only violate domain constraints
Slide 5- 34