SlideShare a Scribd company logo
1 of 64
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

More Related Content

What's hot

Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01
Jotham Gadot
 
Constraints In Sql
Constraints In SqlConstraints In Sql
Constraints In Sql
Anurag
 

What's hot (20)

DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with ExamplesDML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
 
Data models
Data modelsData models
Data models
 
Plsql
PlsqlPlsql
Plsql
 
Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01
 
Constraints In Sql
Constraints In SqlConstraints In Sql
Constraints In Sql
 
Oracle
OracleOracle
Oracle
 
Fragmentation and types of fragmentation in Distributed Database
Fragmentation and types of fragmentation in Distributed DatabaseFragmentation and types of fragmentation in Distributed Database
Fragmentation and types of fragmentation in Distributed Database
 
Recovery Techniques and Need of Recovery
Recovery Techniques and   Need of RecoveryRecovery Techniques and   Need of Recovery
Recovery Techniques and Need of Recovery
 
Odbms concepts
Odbms conceptsOdbms concepts
Odbms concepts
 
Data models
Data modelsData models
Data models
 
Normalization
NormalizationNormalization
Normalization
 
Transaction Processing Concept
Transaction Processing ConceptTransaction Processing Concept
Transaction Processing Concept
 
Database basics
Database basicsDatabase basics
Database basics
 
Object oriented database concepts
Object oriented database conceptsObject oriented database concepts
Object oriented database concepts
 
Distributed Database Management System
Distributed Database Management SystemDistributed Database Management System
Distributed Database Management System
 
The Relational Database Model
The Relational Database ModelThe Relational Database Model
The Relational Database Model
 
Database backup & recovery
Database backup & recoveryDatabase backup & recovery
Database backup & recovery
 
Database Fundamental
Database FundamentalDatabase Fundamental
Database Fundamental
 
advanced sql(database)
advanced sql(database)advanced sql(database)
advanced sql(database)
 
Introduction to sql
Introduction to sqlIntroduction to sql
Introduction to sql
 

Similar to Data models

06 slide rm - pemrograman dan sistem informasi
06 slide   rm - pemrograman dan sistem informasi06 slide   rm - pemrograman dan sistem informasi
06 slide rm - pemrograman dan sistem informasi
Ainul Yaqin
 
chapter09-120827115409-phpapp01.pdf
chapter09-120827115409-phpapp01.pdfchapter09-120827115409-phpapp01.pdf
chapter09-120827115409-phpapp01.pdf
AxmedMaxamuud6
 

Similar to Data models (20)

Database system structure
Database system structureDatabase system structure
Database system structure
 
Relational database design
Relational database designRelational database design
Relational database design
 
Indexing
IndexingIndexing
Indexing
 
Distributed databases
Distributed  databasesDistributed  databases
Distributed databases
 
Introduction to Database Management Systems
Introduction to Database Management SystemsIntroduction to Database Management Systems
Introduction to Database Management Systems
 
Unlock Your Data for ML & AI using Data Virtualization
Unlock Your Data for ML & AI using Data VirtualizationUnlock Your Data for ML & AI using Data Virtualization
Unlock Your Data for ML & AI using Data Virtualization
 
06 slide rm - pemrograman dan sistem informasi
06 slide   rm - pemrograman dan sistem informasi06 slide   rm - pemrograman dan sistem informasi
06 slide rm - pemrograman dan sistem informasi
 
Presentation of se
Presentation of sePresentation of se
Presentation of se
 
Chapter-3-Lesson 1 DM/ Data-Models.ppt/pptx
Chapter-3-Lesson 1 DM/ Data-Models.ppt/pptxChapter-3-Lesson 1 DM/ Data-Models.ppt/pptx
Chapter-3-Lesson 1 DM/ Data-Models.ppt/pptx
 
chapter4-220725121544-5ef6271b.pdf
chapter4-220725121544-5ef6271b.pdfchapter4-220725121544-5ef6271b.pdf
chapter4-220725121544-5ef6271b.pdf
 
Chapter 4: Data Architecture Management
Chapter 4: Data Architecture ManagementChapter 4: Data Architecture Management
Chapter 4: Data Architecture Management
 
basis data 02.pptx
basis data 02.pptxbasis data 02.pptx
basis data 02.pptx
 
chapter09-120827115409-phpapp01.pdf
chapter09-120827115409-phpapp01.pdfchapter09-120827115409-phpapp01.pdf
chapter09-120827115409-phpapp01.pdf
 
Unit-I_dbms_TT_Final.pptx
Unit-I_dbms_TT_Final.pptxUnit-I_dbms_TT_Final.pptx
Unit-I_dbms_TT_Final.pptx
 
Playbook PDF - IT Transformation Governance (EN).pdf
Playbook PDF - IT Transformation Governance (EN).pdfPlaybook PDF - IT Transformation Governance (EN).pdf
Playbook PDF - IT Transformation Governance (EN).pdf
 
18CS81 IOT MODULE 4 PPT.pdf
18CS81 IOT MODULE 4 PPT.pdf18CS81 IOT MODULE 4 PPT.pdf
18CS81 IOT MODULE 4 PPT.pdf
 
INF3703 - Chapter 10 Database Development Process
INF3703 - Chapter 10 Database Development ProcessINF3703 - Chapter 10 Database Development Process
INF3703 - Chapter 10 Database Development Process
 
Chapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project ManagementChapter 9 Data Design .pptxInformation Technology Project Management
Chapter 9 Data Design .pptxInformation Technology Project Management
 
IS740 Chapter 05
IS740 Chapter 05IS740 Chapter 05
IS740 Chapter 05
 
Master data management and data warehousing
Master data management and data warehousingMaster data management and data warehousing
Master data management and data warehousing
 

More from Dr. C.V. Suresh Babu

More from Dr. C.V. Suresh Babu (20)

Data analytics with R
Data analytics with RData analytics with R
Data analytics with R
 
Association rules
Association rulesAssociation rules
Association rules
 
Clustering
ClusteringClustering
Clustering
 
Classification
ClassificationClassification
Classification
 
Blue property assumptions.
Blue property assumptions.Blue property assumptions.
Blue property assumptions.
 
Introduction to regression
Introduction to regressionIntroduction to regression
Introduction to regression
 
DART
DARTDART
DART
 
Mycin
MycinMycin
Mycin
 
Expert systems
Expert systemsExpert systems
Expert systems
 
Dempster shafer theory
Dempster shafer theoryDempster shafer theory
Dempster shafer theory
 
Bayes network
Bayes networkBayes network
Bayes network
 
Bayes' theorem
Bayes' theoremBayes' theorem
Bayes' theorem
 
Knowledge based agents
Knowledge based agentsKnowledge based agents
Knowledge based agents
 
Rule based system
Rule based systemRule based system
Rule based system
 
Formal Logic in AI
Formal Logic in AIFormal Logic in AI
Formal Logic in AI
 
Production based system
Production based systemProduction based system
Production based system
 
Game playing in AI
Game playing in AIGame playing in AI
Game playing in AI
 
Diagnosis test of diabetics and hypertension by AI
Diagnosis test of diabetics and hypertension by AIDiagnosis test of diabetics and hypertension by AI
Diagnosis test of diabetics and hypertension by AI
 
A study on “impact of artificial intelligence in covid19 diagnosis”
A study on “impact of artificial intelligence in covid19 diagnosis”A study on “impact of artificial intelligence in covid19 diagnosis”
A study on “impact of artificial intelligence in covid19 diagnosis”
 
A study on “impact of artificial intelligence in covid19 diagnosis”
A study on “impact of artificial intelligence in covid19 diagnosis”A study on “impact of artificial intelligence in covid19 diagnosis”
A study on “impact of artificial intelligence in covid19 diagnosis”
 

Recently uploaded

Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPSSpellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
AnaAcapella
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

VAMOS CUIDAR DO NOSSO PLANETA! .
VAMOS CUIDAR DO NOSSO PLANETA!                    .VAMOS CUIDAR DO NOSSO PLANETA!                    .
VAMOS CUIDAR DO NOSSO PLANETA! .
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
What is 3 Way Matching Process in Odoo 17.pptx
What is 3 Way Matching Process in Odoo 17.pptxWhat is 3 Way Matching Process in Odoo 17.pptx
What is 3 Way Matching Process in Odoo 17.pptx
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPSSpellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx
 
OSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & SystemsOSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & Systems
 
How to Manage Call for Tendor in Odoo 17
How to Manage Call for Tendor in Odoo 17How to Manage Call for Tendor in Odoo 17
How to Manage Call for Tendor in Odoo 17
 
AIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.pptAIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.ppt
 
PANDITA RAMABAI- Indian political thought GENDER.pptx
PANDITA RAMABAI- Indian political thought GENDER.pptxPANDITA RAMABAI- Indian political thought GENDER.pptx
PANDITA RAMABAI- Indian political thought GENDER.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
UGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdf
UGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdfUGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdf
UGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdf
 
Play hard learn harder: The Serious Business of Play
Play hard learn harder:  The Serious Business of PlayPlay hard learn harder:  The Serious Business of Play
Play hard learn harder: The Serious Business of Play
 
Model Attribute _rec_name in the Odoo 17
Model Attribute _rec_name in the Odoo 17Model Attribute _rec_name in the Odoo 17
Model Attribute _rec_name in the Odoo 17
 
Our Environment Class 10 Science Notes pdf
Our Environment Class 10 Science Notes pdfOur Environment Class 10 Science Notes pdf
Our Environment Class 10 Science Notes pdf
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 

Data models

  • 1. 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
  • 2. 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
  • 3. 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
  • 4. 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
  • 5. 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
  • 6. 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
  • 7. 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
  • 8. 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
  • 9. 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
  • 10. 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
  • 11. 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
  • 12. Department of Information Technology 12Data base Technologies (ITB4201) The Evolution of Data Models (continued) • Hierarchical • Network • Relational • Entity relationship • Object oriented (OO)
  • 13. 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”
  • 14. Department of Information Technology 14Data base Technologies (ITB4201) The Hierarchical Model
  • 15. 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
  • 16. 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
  • 17. 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
  • 18. 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
  • 19. 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)
  • 20. 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.
  • 21. 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
  • 22. 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
  • 23. 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
  • 24. Department of Information Technology 24Data base Technologies (ITB4201) The Network Model (continued)
  • 25. 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
  • 26. 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
  • 27. 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)
  • 28. 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
  • 29. 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
  • 30. 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
  • 31. Department of Information Technology 31Data base Technologies (ITB4201) The Relational Model (continued)
  • 32. Department of Information Technology 32Data base Technologies (ITB4201) The Relational Model (continued)
  • 33. 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
  • 34. 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
  • 35. 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
  • 36. Department of Information Technology 36Data base Technologies (ITB4201) The Entity Relationship Model (continued)
  • 37. Department of Information Technology 37Data base Technologies (ITB4201) The Entity Relationship Model (continued)
  • 38. 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
  • 39. 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
  • 40. 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
  • 41. Department of Information Technology 41Data base Technologies (ITB4201) Object Oriented vs. ER
  • 42. 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
  • 43. 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
  • 44. 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
  • 45. Department of Information Technology 45Data base Technologies (ITB4201)
  • 46. 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
  • 47. 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
  • 48. Department of Information Technology 48Data base Technologies (ITB4201)
  • 49. 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
  • 50. 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
  • 51. Department of Information Technology 51Data base Technologies (ITB4201)
  • 52. 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
  • 53. Department of Information Technology 53Data base Technologies (ITB4201) The Conceptual Model (continued)
  • 54. 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
  • 55. 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
  • 56. Department of Information Technology 56Data base Technologies (ITB4201) The Internal Model (continued)
  • 57. 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
  • 58. Department of Information Technology 58Data base Technologies (ITB4201) The Physical Model (continued)
  • 59. 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).
  • 60. 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)
  • 61. 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
  • 62. 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
  • 63. 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
  • 64. 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