Department of Information Technology 1Data base Technologies (ITB4201)
Introduction to
Data Models
Dr. C.V. Suresh Babu
Professor
Department of IT
Hindustan Institute of Science & Technology
Department of Information Technology 2Data base Technologies (ITB4201)
Discussion Topics
• Importance of Data Models
• Basic Building Blocks
• Business Rules
• Translating Business Rules into Data Models
• Evolution of Data Models
• Hierarchical Data Model
• Network Data Model
• Relational Data Model
• Entity Relational Model
• Object Model
• Summary
• Quiz
Department of Information Technology 3Data base Technologies (ITB4201)
Objectives
• Why data models are important
• About the basic data-modeling building blocks
• What business rules are and how they influence
database design
• How the major data models evolved
• How data models can be classified by level of abstraction
Department of Information Technology 4Data base Technologies (ITB4201)
The Importance of Data Models
• Data models
– Relatively simple representations, usually graphical, of complex real-
world data structures
– Facilitate interaction among the designer, the applications
programmer, and the end user
Department of Information Technology 5Data base Technologies (ITB4201)
The Importance of Data Models (continued)
• End-users have different views and needs for data
• Data model organizes data for various users
Department of Information Technology 6Data base Technologies (ITB4201)
Data Model Basic Building Blocks
• Entity - anything about which data are to be collected
and stored
• Attribute - a characteristic of an entity
• Relationship - describes an association among entities
– One-to-many (1:M) relationship
– Many-to-many (M:N or M:M) relationship
– One-to-one (1:1) relationship
• Constraint - a restriction placed on the data
Department of Information Technology 7Data base Technologies (ITB4201)
Business Rules
• Brief, precise, and unambiguous descriptions of a policies,
procedures, or principles within a specific organization
• Apply to any organization that stores and uses data to
generate information
• Description of operations that help to create and enforce
actions within that organization’s environment
Department of Information Technology 8Data base Technologies (ITB4201)
Business Rules (continued)
• Must be rendered in writing
• Must be kept up to date
• Sometimes are external to the organization
• Must be easy to understand and widely disseminated
• Describe characteristics of the data as viewed by the company
Department of Information Technology 9Data base Technologies (ITB4201)
Discovering Business Rules
Sources of Business Rules:
• Company managers
• Policy makers
• Department managers
• Written documentation
– Procedures
– Standards
– Operations manuals
• Direct interviews with end users
Department of Information Technology 10Data base Technologies (ITB4201)
Translating Business Rules into Data Model
Components
• Standardize company’s view of data
• Constitute a communications tool between users and designers
• Allow designer to understand the nature, role, and scope of data
• Allow designer to understand business processes
• Allow designer to develop appropriate relationship participation rules
and constraints
• Promote creation of an accurate data model
Department of Information Technology 11Data base Technologies (ITB4201)
Discovering Business Rules (continued)
• Generally, nouns translate into entities
• Verbs translate into relationships among entities
• Relationships are bi-directional
Department of Information Technology 12Data base Technologies (ITB4201)
The Evolution of Data Models (continued)
• Hierarchical
• Network
• Relational
• Entity relationship
• Object oriented (OO)
Department of Information Technology 13Data base Technologies (ITB4201)
The Hierarchical Model
• Developed in the 1960s to manage large amounts of data for
complex manufacturing projects
• Basic logical structure is represented by an upside-down “tree”
Department of Information Technology 14Data base Technologies (ITB4201)
The Hierarchical Model
Department of Information Technology 15Data base Technologies (ITB4201) 15 of 15
Hierarchical Database
Item# ItemName Quantity
998 Dog Food 12
764 Cat Food 11
Items
Order
files
Customers
file folders which contain
orders which contain items
To retrieve how many of item A are sold, start
at the top from Customer. Then all nested data
are retrieved top-down and left-right.
Different data models needed for different
retrieval tasks (e.g., Order at the root) =>
high data redundancy in hierarchical DBS!
Customer
XYZ
Order 1
Item A
Order 2
Item B Item A Item C
Entry point
pointers
pointers
• First commercial standard (IBM’s IMS)
• Still used in legacy systems
Department of Information Technology 16Data base Technologies (ITB4201)
The Hierarchical Model (continued)
• The hierarchical structure contains levels, or segments
• Depicts a set of one-to-many (1:M) relationships between a
parent and its children segments
– Each parent can have many children
– each child has only one parent
Department of Information Technology 17Data base Technologies (ITB4201)
The Hierarchical Model (continued)
• Advantages
– Many of the hierarchical data model’s features formed the
foundation for current data models
– Its database application advantages are replicated, albeit in a
different form, in current database environments
– Generated a large installed (mainframe) base, created a pool of
programmers who developed numerous tried-and-true business
applications
Department of Information Technology 18Data base Technologies (ITB4201)
The Hierarchical Model (continued)
• Disadvantages
– Complex to implement
– Difficult to manage
– Lacks structural independence
– Implementation limitations
– Lack of standards
Department of Information Technology 19Data base Technologies (ITB4201)
The Network Model
• Created to
– Represent complex data relationships more effectively
– Improve database performance
– Impose a database standard
• Conference on Data Systems Languages (CODASYL)
• Database Task Group (DBTG)
Department of Information Technology 20Data base Technologies (ITB4201)
Network Database
Customer
XYZ
Order 1 Order 2
Entry point
Entry points
Item A Item B Item C
One data model supports different retrieval paths (by
customer, order, item). Programming of pointers is complex.
Relationships between records also
supported by pointers.
Department of Information Technology 21Data base Technologies (ITB4201)
The Network Model (continued)
• Schema
– Conceptual organization of entire database as viewed by the database
administrator
• Subschema
– Defines database portion “seen” by the application programs that actually
produce the desired information from data contained within the database
• Data Management Language (DML)
– Defines the environment in which data can be managed
Department of Information Technology 22Data base Technologies (ITB4201)
The Network Model (continued)
• Schema Data Definition Language (DDL)
– Enables database administrator to define schema components
• Subschema DDL
– Allows application programs to define database components that
will be used
• DML
– Works with the data in the database
Department of Information Technology 23Data base Technologies (ITB4201)
The Network Model (continued)
• Resembles hierarchical model
• Collection of records in 1:M relationships
• Set
– Relationship
– Composed of at least two record types
• Owner
– Equivalent to the hierarchical model’s parent
• Member
– Equivalent to the hierarchical model’s child
Department of Information Technology 24Data base Technologies (ITB4201)
The Network Model (continued)
Department of Information Technology 25Data base Technologies (ITB4201)
The Network Model (continued)
• Disadvantages
– Too cumbersome
– The lack of ad hoc query capability put heavy pressure on
programmers
– Any structural change in the database could produce havoc in all
application programs that drew data from the database
– Many database old-timers can recall the interminable information
delays
Department of Information Technology 26Data base Technologies (ITB4201)
The Relational Model
• Developed by Codd (IBM) in 1970
• Considered ingenious but impractical in 1970
• Conceptually simple
• Computers lacked power to implement the relational model
• Today, microcomputers can run sophisticated relational
database software
Department of Information Technology 27Data base Technologies (ITB4201) 27 of 15
Relational Database
Customer(CustomerID, Name, …)
Order(OrderID, CustomerID, OrderDate, …)
ItemOrdered(OrderID, ItemID, Quantity, …)
Item(ItemID, Description, Price, …)
• Data organized as logical tables, consisted of rows (records) and columns (attributes), and connected via key
attributes.
• Possible to retrieve almost any combination of rows and columns, and a specific piece of a row (attribute).
• Developers relieved from caring about pointers, and just need to specify Primary Key (PK)—Foreign Key (FK)
relationships, while database engine takes care of pointers.
Primary Key (PK, Key) Foreign Key (FK)
Department of Information Technology 28Data base Technologies (ITB4201)
The Relational Model (continued)
• Relational Database Management System (RDBMS)
• Performs same basic functions provided by hierarchical and
network DBMS systems, in addition to a host of other functions
• Most important advantage of the RDBMS is its ability to hide
the complexities of the relational model from the user
Department of Information Technology 29Data base Technologies (ITB4201)
The Relational Model (continued)
• Table (relations)
– Matrix consisting of a series of row/column intersections
– Related to each other through sharing a common entity characteristic
• Relational diagram
– Representation of relational database’s entities, attributes within
those entities, and relationships between those entities
Department of Information Technology 30Data base Technologies (ITB4201)
The Relational Model (continued)
• Relational Table
– Stores a collection of related entities
• Resembles a file
• Relational table is purely logical structure
– How data are physically stored in the database is of no concern to the
user or the designer
– This property became the source of a real database revolution
Department of Information Technology 31Data base Technologies (ITB4201)
The Relational Model (continued)
Department of Information Technology 32Data base Technologies (ITB4201)
The Relational
Model
(continued)
Department of Information Technology 33Data base Technologies (ITB4201)
The Relational Model (continued)
• Rise to dominance due in part to its powerful and flexible query
language
• Structured Query Language (SQL) allows the user to specify what must
be done without specifying how it must be done
• SQL-based relational database application involves:
– User interface
– A set of tables stored in the database
– SQL engine
Department of Information Technology 34Data base Technologies (ITB4201)
The Entity Relationship Model
• Widely accepted and adapted graphical tool for data modeling
• Introduced by Chen in 1976
• Graphical representation of entities and their relationships in a
database structure
Department of Information Technology 35Data base Technologies (ITB4201)
The Entity Relationship Model (continued)
• Entity relationship diagram (ERD)
– Uses graphic representations to model database components
– Entity is mapped to a relational table
• Entity instance (or occurrence) is row in table
• Entity set is collection of like entities
• Connectivity labels types of relationships
– Diamond connected to related entities through a relationship line
Department of Information Technology 36Data base Technologies (ITB4201)
The Entity
Relationship
Model
(continued)
Department of Information Technology 37Data base Technologies (ITB4201)
The Entity
Relationship
Model
(continued)
Department of Information Technology 38Data base Technologies (ITB4201)
The Object Oriented Model
• Modeled both data and their relationships in a single structure
known as an object
• Object-oriented data model (OODM) is the basis for the object-
oriented database management system (OODBMS)
• OODM is said to be a semantic data model
Department of Information Technology 39Data base Technologies (ITB4201)
The Object Oriented Model (continued)
• Object described by its factual content
– Like relational model’s entity
• Includes information about relationships between facts within object, and
relationships with other objects
– Unlike relational model’s entity
• Subsequent OODM development allowed an object to also contain all
operations
• Object becomes basic building block for autonomous structures
Department of Information Technology 40Data base Technologies (ITB4201)
The Object Oriented Model (continued)
• Object is an abstraction of a real-world entity
• Attributes describe the properties of an object
• Objects that share similar characteristics are grouped in classes
• Classes are organized in a class hierarchy
• Inheritance is the ability of an object within the class hierarchy to inherit the
attributes and methods of classes above it
Department of Information Technology 41Data base Technologies (ITB4201)
Object
Oriented
vs.
ER
Department of Information Technology 42Data base Technologies (ITB4201)
Other Models
• Extended Relational Data Model (ERDM)
– Semantic data model developed in response to increasing complexity
of applications
– DBMS based on the ERDM often described as an object/relational
database management system (O/RDBMS)
– Primarily geared to business applications
Department of Information Technology 43Data base Technologies (ITB4201)
Database Models and the Internet
• Internet drastically changed role and scope of database market
• OODM and ERDM-O/RDM have taken a backseat to
development of databases that interface with Internet
• Dominance of Web has resulted in growing need to manage
unstructured information
Department of Information Technology 44Data base Technologies (ITB4201)
Data Models: A Summary
• Each new data model capitalized on the shortcomings of previous
models
• Common characteristics:
– Conceptual simplicity without compromising the semantic completeness of the
database
– Represent the real world as closely as possible
– Representation of real-world transformations (behavior) must comply with
consistency and integrity characteristics of any data model
Department of Information Technology 45Data base Technologies (ITB4201)
Department of Information Technology 46Data base Technologies (ITB4201)
Degrees of Data Abstraction
• Way of classifying data models
• Many processes begin at high level of abstraction and proceed
to an ever-increasing level of detail
• Designing a usable database follows the same basic process
Department of Information Technology 47Data base Technologies (ITB4201)
Degrees of Data Abstraction (continued)
• American National Standards Institute (ANSI) Standards
Planning and Requirements Committee (SPARC)
– Defined a framework for data modeling based on degrees of data
abstraction(1970s):
• External
• Conceptual
• Internal
Department of Information Technology 48Data base Technologies (ITB4201)
Department of Information Technology 49Data base Technologies (ITB4201)
The External Model
• End users’ view of the data environment
• Requires that the modeler subdivide set of requirements and
constraints into functional modules that can be examined
within the framework of their external models
Department of Information Technology 50Data base Technologies (ITB4201)
The External Model (continued)
• Advantages:
– Easy to identify specific data required to
support each business unit’s operations
– Facilitates designer’s job by providing feedback
about the model’s adequacy
– Creation of external models helps to ensure
security constraints in the database design
– Simplifies application program development
Department of Information Technology 51Data base Technologies (ITB4201)
Department of Information Technology 52Data base Technologies (ITB4201)
The Conceptual Model
• Represents global view of the entire database
• Representation of data as viewed by the entire organization
• Basis for identification and high-level description of main data
objects, avoiding details
• Most widely used conceptual model is the entity relationship (ER)
model
Department of Information Technology 53Data base Technologies (ITB4201)
The
Conceptual
Model
(continued)
Department of Information Technology 54Data base Technologies (ITB4201)
The Conceptual Model (continued)
• Provides a relatively easily understood macro level view of data
environment
• Independent of both software and hardware
– Does not depend on the DBMS software used to implement the model
– Does not depend on the hardware used in the implementation of the model
– Changes in either hardware or DBMS software have no effect on the database design
at the conceptual level
Department of Information Technology 55Data base Technologies (ITB4201)
The Internal Model
• Representation of the database as “seen” by the DBMS
• Maps the conceptual model to the DBMS
• Internal schema depicts a specific representation of an internal
model
Department of Information Technology 56Data base Technologies (ITB4201)
The Internal
Model
(continued)
Department of Information Technology 57Data base Technologies (ITB4201)
The Physical Model
• Operates at lowest level of abstraction, describing the way
data are saved on storage media such as disks or tapes
• Software and hardware dependent
• Requires that database designers have a detailed knowledge of
the hardware and software used to implement database
design
Department of Information Technology 58Data base Technologies (ITB4201)
The Physical Model (continued)
Department of Information Technology 59Data base Technologies (ITB4201)
Object-Relational DB Systems
Inheritance in Generalization/Specialization relationship
Customer
CustomerID
Name
…
Add Customer
Drop Customer
Change Address…
Government
Customer
ContactName
ContactPhone
Discount, …
NewContact
Corporate
ContactName
ContactPhone
…
AddNewContact
Order
OrderID
CustomerID
…
NewOrder
DeleteOrder
…
Procedures (behavior,
methods) for processing
data.
Data
• Extends data types and methods over relational DB (e.g., images, sound).
• Takes advantages of OO capabilities (e.g., inheritance; figure below).
• Pure ODB rare (storage of objects with CRUD code); not fully formalized as relational DB systems are.
• The core storage is a relational database combined with a storage of non-alphanumeric objects.
• Postgres/PostgreSQL, Illustra (later IBM), Omniscience (later Oracle).
Department of Information Technology 60Data base Technologies (ITB4201)
– OOIS may or may not use ORDB.
– Objects are created in main memory according to class diagram (logical design) and business rules;
many designs, same databases
– Objects are populated by data from the beck-end databases (relational or object-relational) - data
access layer in system sequence diagrams.
– System operations are performed by objects
ORDB Systems vs. Object Oriented
Information Systems (OOIS)
Department of Information Technology 61Data base Technologies (ITB4201)
Summary
• A data model is a (relatively) simple abstraction of a complex real-
world data environment
• Basic data modeling components are:
– Entities
– Attributes
– Relationships
– Constraints
Department of Information Technology 62Data base Technologies (ITB4201)
Summary (continued)
• Hierarchical model
– Depicts a set of one-to-many (1:M) relationships between a parent and its
children segments
• Network data model
– Uses sets to represent 1:M relationships between record types
• Relational model
– Current database implementation standard
– ER model is a popular graphical tool for data modeling that complements the
relational model
Department of Information Technology 63Data base Technologies (ITB4201)
Summary (continued)
• Object is basic modeling structure of object oriented data model
• The relational model has adopted many object-oriented extensions to
become the extended relational data model (ERDM)
• Data modeling requirements are a function of different data views
(global vs. local) and level of data abstraction
Department of Information Technology 64Data base Technologies (ITB4201)
Test yourself : Quiz
1. In Relational Model, rows are referred to as _______ and columns are
referred to as _______.
a. connectors, nodes b. nodes, connectors c. attributes, tuples d. tuples, attributes
2. Which of the following is a Data Model?
a. Entity-Relationship model b. Relational data model c. Object-Based data model d. All of
the above
3. Which of the following is the oldest database model?
a. Relational b. Hierarchical c. Physical d. Network
4. In the Relational Model, each _______ contains values for the _______.
a. relation, entities b. entity, domains c. tuple, attributes d. attribute, tuples
5. A multidimensional database model is used most often in which of the following
models?
a. Data warehouse b. Relational c. Hierarchical d. Network

Data models

  • 1.
    Department of InformationTechnology 1Data base Technologies (ITB4201) Introduction to Data Models Dr. C.V. Suresh Babu Professor Department of IT Hindustan Institute of Science & Technology
  • 2.
    Department of InformationTechnology 2Data base Technologies (ITB4201) Discussion Topics • Importance of Data Models • Basic Building Blocks • Business Rules • Translating Business Rules into Data Models • Evolution of Data Models • Hierarchical Data Model • Network Data Model • Relational Data Model • Entity Relational Model • Object Model • Summary • Quiz
  • 3.
    Department of InformationTechnology 3Data base Technologies (ITB4201) Objectives • Why data models are important • About the basic data-modeling building blocks • What business rules are and how they influence database design • How the major data models evolved • How data models can be classified by level of abstraction
  • 4.
    Department of InformationTechnology 4Data base Technologies (ITB4201) The Importance of Data Models • Data models – Relatively simple representations, usually graphical, of complex real- world data structures – Facilitate interaction among the designer, the applications programmer, and the end user
  • 5.
    Department of InformationTechnology 5Data base Technologies (ITB4201) The Importance of Data Models (continued) • End-users have different views and needs for data • Data model organizes data for various users
  • 6.
    Department of InformationTechnology 6Data base Technologies (ITB4201) Data Model Basic Building Blocks • Entity - anything about which data are to be collected and stored • Attribute - a characteristic of an entity • Relationship - describes an association among entities – One-to-many (1:M) relationship – Many-to-many (M:N or M:M) relationship – One-to-one (1:1) relationship • Constraint - a restriction placed on the data
  • 7.
    Department of InformationTechnology 7Data base Technologies (ITB4201) Business Rules • Brief, precise, and unambiguous descriptions of a policies, procedures, or principles within a specific organization • Apply to any organization that stores and uses data to generate information • Description of operations that help to create and enforce actions within that organization’s environment
  • 8.
    Department of InformationTechnology 8Data base Technologies (ITB4201) Business Rules (continued) • Must be rendered in writing • Must be kept up to date • Sometimes are external to the organization • Must be easy to understand and widely disseminated • Describe characteristics of the data as viewed by the company
  • 9.
    Department of InformationTechnology 9Data base Technologies (ITB4201) Discovering Business Rules Sources of Business Rules: • Company managers • Policy makers • Department managers • Written documentation – Procedures – Standards – Operations manuals • Direct interviews with end users
  • 10.
    Department of InformationTechnology 10Data base Technologies (ITB4201) Translating Business Rules into Data Model Components • Standardize company’s view of data • Constitute a communications tool between users and designers • Allow designer to understand the nature, role, and scope of data • Allow designer to understand business processes • Allow designer to develop appropriate relationship participation rules and constraints • Promote creation of an accurate data model
  • 11.
    Department of InformationTechnology 11Data base Technologies (ITB4201) Discovering Business Rules (continued) • Generally, nouns translate into entities • Verbs translate into relationships among entities • Relationships are bi-directional
  • 12.
    Department of InformationTechnology 12Data base Technologies (ITB4201) The Evolution of Data Models (continued) • Hierarchical • Network • Relational • Entity relationship • Object oriented (OO)
  • 13.
    Department of InformationTechnology 13Data base Technologies (ITB4201) The Hierarchical Model • Developed in the 1960s to manage large amounts of data for complex manufacturing projects • Basic logical structure is represented by an upside-down “tree”
  • 14.
    Department of InformationTechnology 14Data base Technologies (ITB4201) The Hierarchical Model
  • 15.
    Department of InformationTechnology 15Data base Technologies (ITB4201) 15 of 15 Hierarchical Database Item# ItemName Quantity 998 Dog Food 12 764 Cat Food 11 Items Order files Customers file folders which contain orders which contain items To retrieve how many of item A are sold, start at the top from Customer. Then all nested data are retrieved top-down and left-right. Different data models needed for different retrieval tasks (e.g., Order at the root) => high data redundancy in hierarchical DBS! Customer XYZ Order 1 Item A Order 2 Item B Item A Item C Entry point pointers pointers • First commercial standard (IBM’s IMS) • Still used in legacy systems
  • 16.
    Department of InformationTechnology 16Data base Technologies (ITB4201) The Hierarchical Model (continued) • The hierarchical structure contains levels, or segments • Depicts a set of one-to-many (1:M) relationships between a parent and its children segments – Each parent can have many children – each child has only one parent
  • 17.
    Department of InformationTechnology 17Data base Technologies (ITB4201) The Hierarchical Model (continued) • Advantages – Many of the hierarchical data model’s features formed the foundation for current data models – Its database application advantages are replicated, albeit in a different form, in current database environments – Generated a large installed (mainframe) base, created a pool of programmers who developed numerous tried-and-true business applications
  • 18.
    Department of InformationTechnology 18Data base Technologies (ITB4201) The Hierarchical Model (continued) • Disadvantages – Complex to implement – Difficult to manage – Lacks structural independence – Implementation limitations – Lack of standards
  • 19.
    Department of InformationTechnology 19Data base Technologies (ITB4201) The Network Model • Created to – Represent complex data relationships more effectively – Improve database performance – Impose a database standard • Conference on Data Systems Languages (CODASYL) • Database Task Group (DBTG)
  • 20.
    Department of InformationTechnology 20Data base Technologies (ITB4201) Network Database Customer XYZ Order 1 Order 2 Entry point Entry points Item A Item B Item C One data model supports different retrieval paths (by customer, order, item). Programming of pointers is complex. Relationships between records also supported by pointers.
  • 21.
    Department of InformationTechnology 21Data base Technologies (ITB4201) The Network Model (continued) • Schema – Conceptual organization of entire database as viewed by the database administrator • Subschema – Defines database portion “seen” by the application programs that actually produce the desired information from data contained within the database • Data Management Language (DML) – Defines the environment in which data can be managed
  • 22.
    Department of InformationTechnology 22Data base Technologies (ITB4201) The Network Model (continued) • Schema Data Definition Language (DDL) – Enables database administrator to define schema components • Subschema DDL – Allows application programs to define database components that will be used • DML – Works with the data in the database
  • 23.
    Department of InformationTechnology 23Data base Technologies (ITB4201) The Network Model (continued) • Resembles hierarchical model • Collection of records in 1:M relationships • Set – Relationship – Composed of at least two record types • Owner – Equivalent to the hierarchical model’s parent • Member – Equivalent to the hierarchical model’s child
  • 24.
    Department of InformationTechnology 24Data base Technologies (ITB4201) The Network Model (continued)
  • 25.
    Department of InformationTechnology 25Data base Technologies (ITB4201) The Network Model (continued) • Disadvantages – Too cumbersome – The lack of ad hoc query capability put heavy pressure on programmers – Any structural change in the database could produce havoc in all application programs that drew data from the database – Many database old-timers can recall the interminable information delays
  • 26.
    Department of InformationTechnology 26Data base Technologies (ITB4201) The Relational Model • Developed by Codd (IBM) in 1970 • Considered ingenious but impractical in 1970 • Conceptually simple • Computers lacked power to implement the relational model • Today, microcomputers can run sophisticated relational database software
  • 27.
    Department of InformationTechnology 27Data base Technologies (ITB4201) 27 of 15 Relational Database Customer(CustomerID, Name, …) Order(OrderID, CustomerID, OrderDate, …) ItemOrdered(OrderID, ItemID, Quantity, …) Item(ItemID, Description, Price, …) • Data organized as logical tables, consisted of rows (records) and columns (attributes), and connected via key attributes. • Possible to retrieve almost any combination of rows and columns, and a specific piece of a row (attribute). • Developers relieved from caring about pointers, and just need to specify Primary Key (PK)—Foreign Key (FK) relationships, while database engine takes care of pointers. Primary Key (PK, Key) Foreign Key (FK)
  • 28.
    Department of InformationTechnology 28Data base Technologies (ITB4201) The Relational Model (continued) • Relational Database Management System (RDBMS) • Performs same basic functions provided by hierarchical and network DBMS systems, in addition to a host of other functions • Most important advantage of the RDBMS is its ability to hide the complexities of the relational model from the user
  • 29.
    Department of InformationTechnology 29Data base Technologies (ITB4201) The Relational Model (continued) • Table (relations) – Matrix consisting of a series of row/column intersections – Related to each other through sharing a common entity characteristic • Relational diagram – Representation of relational database’s entities, attributes within those entities, and relationships between those entities
  • 30.
    Department of InformationTechnology 30Data base Technologies (ITB4201) The Relational Model (continued) • Relational Table – Stores a collection of related entities • Resembles a file • Relational table is purely logical structure – How data are physically stored in the database is of no concern to the user or the designer – This property became the source of a real database revolution
  • 31.
    Department of InformationTechnology 31Data base Technologies (ITB4201) The Relational Model (continued)
  • 32.
    Department of InformationTechnology 32Data base Technologies (ITB4201) The Relational Model (continued)
  • 33.
    Department of InformationTechnology 33Data base Technologies (ITB4201) The Relational Model (continued) • Rise to dominance due in part to its powerful and flexible query language • Structured Query Language (SQL) allows the user to specify what must be done without specifying how it must be done • SQL-based relational database application involves: – User interface – A set of tables stored in the database – SQL engine
  • 34.
    Department of InformationTechnology 34Data base Technologies (ITB4201) The Entity Relationship Model • Widely accepted and adapted graphical tool for data modeling • Introduced by Chen in 1976 • Graphical representation of entities and their relationships in a database structure
  • 35.
    Department of InformationTechnology 35Data base Technologies (ITB4201) The Entity Relationship Model (continued) • Entity relationship diagram (ERD) – Uses graphic representations to model database components – Entity is mapped to a relational table • Entity instance (or occurrence) is row in table • Entity set is collection of like entities • Connectivity labels types of relationships – Diamond connected to related entities through a relationship line
  • 36.
    Department of InformationTechnology 36Data base Technologies (ITB4201) The Entity Relationship Model (continued)
  • 37.
    Department of InformationTechnology 37Data base Technologies (ITB4201) The Entity Relationship Model (continued)
  • 38.
    Department of InformationTechnology 38Data base Technologies (ITB4201) The Object Oriented Model • Modeled both data and their relationships in a single structure known as an object • Object-oriented data model (OODM) is the basis for the object- oriented database management system (OODBMS) • OODM is said to be a semantic data model
  • 39.
    Department of InformationTechnology 39Data base Technologies (ITB4201) The Object Oriented Model (continued) • Object described by its factual content – Like relational model’s entity • Includes information about relationships between facts within object, and relationships with other objects – Unlike relational model’s entity • Subsequent OODM development allowed an object to also contain all operations • Object becomes basic building block for autonomous structures
  • 40.
    Department of InformationTechnology 40Data base Technologies (ITB4201) The Object Oriented Model (continued) • Object is an abstraction of a real-world entity • Attributes describe the properties of an object • Objects that share similar characteristics are grouped in classes • Classes are organized in a class hierarchy • Inheritance is the ability of an object within the class hierarchy to inherit the attributes and methods of classes above it
  • 41.
    Department of InformationTechnology 41Data base Technologies (ITB4201) Object Oriented vs. ER
  • 42.
    Department of InformationTechnology 42Data base Technologies (ITB4201) Other Models • Extended Relational Data Model (ERDM) – Semantic data model developed in response to increasing complexity of applications – DBMS based on the ERDM often described as an object/relational database management system (O/RDBMS) – Primarily geared to business applications
  • 43.
    Department of InformationTechnology 43Data base Technologies (ITB4201) Database Models and the Internet • Internet drastically changed role and scope of database market • OODM and ERDM-O/RDM have taken a backseat to development of databases that interface with Internet • Dominance of Web has resulted in growing need to manage unstructured information
  • 44.
    Department of InformationTechnology 44Data base Technologies (ITB4201) Data Models: A Summary • Each new data model capitalized on the shortcomings of previous models • Common characteristics: – Conceptual simplicity without compromising the semantic completeness of the database – Represent the real world as closely as possible – Representation of real-world transformations (behavior) must comply with consistency and integrity characteristics of any data model
  • 45.
    Department of InformationTechnology 45Data base Technologies (ITB4201)
  • 46.
    Department of InformationTechnology 46Data base Technologies (ITB4201) Degrees of Data Abstraction • Way of classifying data models • Many processes begin at high level of abstraction and proceed to an ever-increasing level of detail • Designing a usable database follows the same basic process
  • 47.
    Department of InformationTechnology 47Data base Technologies (ITB4201) Degrees of Data Abstraction (continued) • American National Standards Institute (ANSI) Standards Planning and Requirements Committee (SPARC) – Defined a framework for data modeling based on degrees of data abstraction(1970s): • External • Conceptual • Internal
  • 48.
    Department of InformationTechnology 48Data base Technologies (ITB4201)
  • 49.
    Department of InformationTechnology 49Data base Technologies (ITB4201) The External Model • End users’ view of the data environment • Requires that the modeler subdivide set of requirements and constraints into functional modules that can be examined within the framework of their external models
  • 50.
    Department of InformationTechnology 50Data base Technologies (ITB4201) The External Model (continued) • Advantages: – Easy to identify specific data required to support each business unit’s operations – Facilitates designer’s job by providing feedback about the model’s adequacy – Creation of external models helps to ensure security constraints in the database design – Simplifies application program development
  • 51.
    Department of InformationTechnology 51Data base Technologies (ITB4201)
  • 52.
    Department of InformationTechnology 52Data base Technologies (ITB4201) The Conceptual Model • Represents global view of the entire database • Representation of data as viewed by the entire organization • Basis for identification and high-level description of main data objects, avoiding details • Most widely used conceptual model is the entity relationship (ER) model
  • 53.
    Department of InformationTechnology 53Data base Technologies (ITB4201) The Conceptual Model (continued)
  • 54.
    Department of InformationTechnology 54Data base Technologies (ITB4201) The Conceptual Model (continued) • Provides a relatively easily understood macro level view of data environment • Independent of both software and hardware – Does not depend on the DBMS software used to implement the model – Does not depend on the hardware used in the implementation of the model – Changes in either hardware or DBMS software have no effect on the database design at the conceptual level
  • 55.
    Department of InformationTechnology 55Data base Technologies (ITB4201) The Internal Model • Representation of the database as “seen” by the DBMS • Maps the conceptual model to the DBMS • Internal schema depicts a specific representation of an internal model
  • 56.
    Department of InformationTechnology 56Data base Technologies (ITB4201) The Internal Model (continued)
  • 57.
    Department of InformationTechnology 57Data base Technologies (ITB4201) The Physical Model • Operates at lowest level of abstraction, describing the way data are saved on storage media such as disks or tapes • Software and hardware dependent • Requires that database designers have a detailed knowledge of the hardware and software used to implement database design
  • 58.
    Department of InformationTechnology 58Data base Technologies (ITB4201) The Physical Model (continued)
  • 59.
    Department of InformationTechnology 59Data base Technologies (ITB4201) Object-Relational DB Systems Inheritance in Generalization/Specialization relationship Customer CustomerID Name … Add Customer Drop Customer Change Address… Government Customer ContactName ContactPhone Discount, … NewContact Corporate ContactName ContactPhone … AddNewContact Order OrderID CustomerID … NewOrder DeleteOrder … Procedures (behavior, methods) for processing data. Data • Extends data types and methods over relational DB (e.g., images, sound). • Takes advantages of OO capabilities (e.g., inheritance; figure below). • Pure ODB rare (storage of objects with CRUD code); not fully formalized as relational DB systems are. • The core storage is a relational database combined with a storage of non-alphanumeric objects. • Postgres/PostgreSQL, Illustra (later IBM), Omniscience (later Oracle).
  • 60.
    Department of InformationTechnology 60Data base Technologies (ITB4201) – OOIS may or may not use ORDB. – Objects are created in main memory according to class diagram (logical design) and business rules; many designs, same databases – Objects are populated by data from the beck-end databases (relational or object-relational) - data access layer in system sequence diagrams. – System operations are performed by objects ORDB Systems vs. Object Oriented Information Systems (OOIS)
  • 61.
    Department of InformationTechnology 61Data base Technologies (ITB4201) Summary • A data model is a (relatively) simple abstraction of a complex real- world data environment • Basic data modeling components are: – Entities – Attributes – Relationships – Constraints
  • 62.
    Department of InformationTechnology 62Data base Technologies (ITB4201) Summary (continued) • Hierarchical model – Depicts a set of one-to-many (1:M) relationships between a parent and its children segments • Network data model – Uses sets to represent 1:M relationships between record types • Relational model – Current database implementation standard – ER model is a popular graphical tool for data modeling that complements the relational model
  • 63.
    Department of InformationTechnology 63Data base Technologies (ITB4201) Summary (continued) • Object is basic modeling structure of object oriented data model • The relational model has adopted many object-oriented extensions to become the extended relational data model (ERDM) • Data modeling requirements are a function of different data views (global vs. local) and level of data abstraction
  • 64.
    Department of InformationTechnology 64Data base Technologies (ITB4201) Test yourself : Quiz 1. In Relational Model, rows are referred to as _______ and columns are referred to as _______. a. connectors, nodes b. nodes, connectors c. attributes, tuples d. tuples, attributes 2. Which of the following is a Data Model? a. Entity-Relationship model b. Relational data model c. Object-Based data model d. All of the above 3. Which of the following is the oldest database model? a. Relational b. Hierarchical c. Physical d. Network 4. In the Relational Model, each _______ contains values for the _______. a. relation, entities b. entity, domains c. tuple, attributes d. attribute, tuples 5. A multidimensional database model is used most often in which of the following models? a. Data warehouse b. Relational c. Hierarchical d. Network