SlideShare una empresa de Scribd logo
1 de 61
Database Management
Systems: Basic Concepts
Definitions
• Data: known facts that can be recorded
• Database: a collection of data
     • represents some aspect of the real world
     • logically coherent collection (not a random collection)
     • designed, built & populated for a specific purpose
• Database Management System: the software
  that manages the data
DBMSs provide...
• Facilities to:
  – Define – specify data types, structures &
    constraints for the data to be stored in the
    database
  – Construct – store the data
  – Manipulate – pose queries to retrieve specific
    data, update data or generate reports based
    on the data
Popular Examples
• Company Databases
  – employees, departments, projects …
• Airline Reservation Systems
  – flights, fares, customers, reservations ..
• Library Databases
  – authors, titles, publishers, videos …
• Bank Databases
  – accounts, customers ...
Schemas & Instances
• Important to distinguish between
  – database schema: the description of the
    database
  – database: the stored data
Financial Records
  (Company, Type, Name, Date, Amt, NumShares, Broker)




Company    Type     Name Date        Amt     NumShares Broker

Trimark   Mutual    Trimark 01/01/84 49.75   100      C. Harris
          Fund      Fund

 AGF       Mutual   Foreign 01/01/94 62.25   1000     C. Harris
           Fund     Equity
Database States
• Empty State -- database is empty when we
  first define the database schema
• Initial State -- database is first populated or
  loaded with data
• Current State -- snapshot in time




                        3753                        7
DBMS Languages
• DDL: Data Definition Language
  – used to define/change the structure of the
    database
• DML: Data Manipulation Language
  – used to query the database, insert data,
    change data or delete data




                       3753                      8
Classification of DBMSs
• Data Model Classification
  – relational, network, hierarchical, object-
    oriented …
• Number of users
  – single user or multi-user
• Number of Sites
  – centralized vs distributed
• Cost of the DBMS

                        3753                     9
Data Model
• A collection of concepts that can be used
  to define the structure (data, data types,
  relations and constraints) of a database.
• Examples:
  – Entity Relationship model
  – Relational Model
  – hierarchical & network models
  – object-data models
Entity-Relationship Model
Entity-Relationship Model

• Most popular conceptual model for
  database design
• Basis for many other models
• Describes the data in a system and how
  that data is related
• Describes data as entities, attributes
  and relationships
               3753 X1
Database requirements
• We must convert the written database
  requirements into an E-R diagram
• Need to determine the entities, attributes
  and relationships.
  – nouns = entities
  – adjectives = attributes
  – verbs = relationships


                       3753 X1
The Pieces
• Objects
  – Entity (including weak entities)
  – Attribute
  – Relationship
• “Structural” Constraints
  – Cardinality
  – Participation


                       3753 X1
Entities
• Entity – basic object of the E-R model
  – Represents a “thing” with an independent
    existence
  – Can exist physically or conceptually
     • a professor, a student, a course
• Entity type – used to define a set of
  entities with the same properties.


                         3753 X1
Entity and Entity Types

                            Name
               Number                  Topic
Entity Type
                           Course


                 Number: 3753

Entity
                 Name: Database Management Systems
                 Topic: Introduction to DBMSs



               3753 X1
Attributes
• Each entity has a set of associated properties
  that describes the entity. These properties are
  known as attributes.
• Attributes can be:
  –   Simple or Composite
  –   Single or Multi-valued
  –   Stored or Derived
  –   NULL



                               3753 X1
Attributes (cont’d)


Simple        Professor      Start Date




                                          First
              Professor
Composite                   Name
                                          Last
                  3753 X1
Attributes (cont’d)


Single         Professor    Employee ID#




Multi-Valued   Professor       Email


                  3753 X1
Attributes (cont’d)


Stored          Professor      Start Date




Derived         Professor    Years Teaching


                   3753 X1
Attributes (cont’d)
• NULL attributes have no value
  – not 0 (zero)
  – not a blank string
• Attributes can be “nullable” where a null
  value is allowed, or “not nullable” where
  they must have a value.



                         3753 X1
Primary Keys

  Professor                 Employee ID


• Employee ID is the primary key
• Primary keys must be unique for the
  entity in question


                  3753 X1
Relationships
• defines a set of associations between
  various entities
• can have attributes to define them
• are limited by:
  – Participation
  – Cardinality Ratio



                        3753 X1
Relationships (cont’d)



Section      part of     Course




              3753 X1
Participation
• Defines if the existence of an entity depends on
  it being related to another entity with a
  relationship type.
  – Partial
  – Total


  Section            part of            Course



                       3753 X1
Cardinality
• The number of relationships that an entity
  may participate in.
  – 1:1, 1:N, N:M, M:1


                 N                 1
  Section            part of           Course




                         3753 X1
Weak entity
• Weak entities do not have key attributes of their
  own.
• Weak entities cannot exist without another a
  relationship to another entity.
• A partial key is the portion of the key that comes
  from the weak entity. The rest of the key comes
  from the other entity in the relationship.
• Weak entities always have total participation as
  they cannot exist without the identifying
  relationship.


                       3753 X1
Weak Entity (cont’d)

    Section ID             Section


   Descriminator


Identifying Relationship    part of




                                       Number
                           Course
                             3753 X1
Acadia Teaching Database

Design an E-R schema for a database to store info about professors,
  courses and course sections indicating the following:
• The name and employee ID number of each professor
• The salary and email address(es) for each professor
• How long each professor has been at the university
• The course sections each professor teaches
• The name, number and topic for each course offered
• The section and room number for each course section
• Each course section must have only one professor
• Each course can have multiple sections




                               3753 X1
Visual View of the Database
Employee ID   Start Date     Years Teaching                Section ID          Room


                                       1             N
                 Professor                 teaches               Section
  Email

                                                                     N

   Salary                      First
                  Name                                           Part of

                               Last
                                                                     1



                                           Number                Course



                                                         Topic          Name
University DB Case Study
• Maintain the following information about
  undergraduate students:
  – Name, address, student number, date of
    birth, year of study, degree program (BA, BSc,
    BCS), concentration (Major, Honours, etc) and
    department of concentration.
     • Note: An address is composed of a street, city,
       province and postal code; the student number is
       unique for each student


                         3753 X1
University Case Study (cont’d)
• Maintain information about departments
  – Name, code (CS, Phy), office phone, and faculty
    members
• Maintain information about courses:
  – Course number (3753), title, description,
    prerequisites.
• Maintain information about course sections:
  – Section (A, B, C), term (X1), slot #, instructor



                           3753 X1
University Case Study (cont’d)
• Maintain information about faculty:
  – Name, rank, employee number, salary, office
    number, phone number and email address.
  – Note: employee number is unique
• Maintain a program of study for the current
  year for each student:
  – i.e. courses that each student is enrolled in


                       3753 X1
Address      Street
Number                      N                 M
              Section            Enrolled                     Student
                                                                             Number        City
  Term
                                                                             Name       Province
  Slot        N
                                N
                                                  1
                                    Teaches                                   DOB       Postal Code
               Has
                                                                               Salary     Name
                  1

                            N
                                                               Faculty                  Number
Number                          Prereq
                                                                                          Office
                                                      1                  N
  Title       Course             M

                                                                                         Phone
                                Start Date            Head          Member
Description                                                                               Email
                                                          1              1
                                End Date                                     Code         Rank
               N


                        1
                                                                             Name
               Offer                                            Dept
                                                                             Phone
Extended E-R Model
• E-R model is sufficient for traditional
  database applications
• Nontraditional applications (CAD,
  multimedia) have more complex
  requirements
• Can extend traditional E-R diagrams with
  semantic data modeling concepts


                    3753 X1
IS-A Relationship
     Name      Employee          S.S.N.

                 IS-A


  Staff         Faculty       Teaching Assistant


Position         Rank             Student #

                    3753 X1
Specialization & Generalization
 • Specialization
   – process of taking an entity and creating
     several specialized subclasses
 • Generalization
   – process of taking several related entities
     and creating a general superclass
 • We will talk mainly of specialization, but
   most information will also apply to
   generalization
                     3753 X1
Specialization constraints
• Specializations can be predicate-defined
  or attribute-defined or user-defined
• Disjointness constraint – specialization is
  disjoint or overlapping
• Completeness constraint – specialization
  is total or partial



                     3753 X1
Predicate-defined subclass
• An attribute value is used to determine the
  members of a subclass
• Not all members of every subclass can be
  determined by the attribute value
• In the following example, the Pension Plan type
  can be used to determine faculty from staff, but
  has no effect on students or those who opted out
  of the pension plan.


                      3753 X1
Predicate-defined subclass
 Pension         Person              S.S.N.
Plan Type
                                     Note: not all
                   d
                                   employees included


        Staff                    Faculty


      Position                    Rank
                       3753 X1
Attribute-defined subclass
• There is one defining attribute for all
  subclasses
• Each member of the superclass can be
  assigned to the appropriate subclass
  based on this one attribute




                    3753 X1
Attribute-defined subclass
Jobtype           Employee                     S.S.N.
                         Jobtype
                     d
                                   “Faculty”
        “Staff”
                      “Student”
Staff             Students                        Faculty

Rank               Year                            Rank
                         3753 X1
User-defined subclass
• When there is no condition to automatically
  determine membership in a subclass, it must
  be done at the discretion of the user.




                    3753 X1
Disjointness constraint
• Specifies that an entity can be a member
  of at most one subclass
• There can be no overlap between the
  subclasses
• We use the notation of a d in a circle to
  symbolize that the subclasses are disjoint



                    3753 X1
Disjoint constraint
     Name       Employee          S.S.N.

                    d


  Staff                        Teaching Assistant
                 Faculty

Position         Rank              Student #
                     3753 X1
Overlap
• Entities are able to belong to more than
  one subclass
• Notation is an o inside of a circle




                    3753 X1
Overlap
Jobtype   Employee               S.S.N.

                           A staff member may
             o              also be a student




Staff     Students                Faculty

Rank        Year                   Rank
                 3753 X1
Completeness Constraint
• May be total or partial
• for total, every entity in the superclass
  must belong to a subclass
• for partial, entities in the superclass do not
  need to be part of any subclass
• notation for total and partial are the same
  as in a regular E-R diagram – single and
  double lines

                      3753 X1
Partial
 Pension    Person       S.S.N.
Plan Type

              d



Staff                      Faculty

Rank                        Rank
               3753 X1
Total
Jobtype   Employee          S.I.N.


             o



 Staff    Students         Faculty

 Rank       Year            Rank

                 3753 X1
Hierarchies and Lattices
• Hierarchies
  – a tree-like structure where each subclass
    belongs to only one superclass


• Lattices
  – a graph-like structure where a subclass can
    belong to more than one superclass


                      3753 X1
Lattice

         name         Person

                         o                  student #

          Employee                Student

salary


                Teaching Assistant     course
                        3753 X1
3753 X1
Union Types and Lattice
• Lattice
  – Subset of the Intersection of the superclasses.
  – A shared subclass (Teaching Assistant) is the
    subclass in two distinct superclass relatioships
• Union Types
  – Subset of the unoin of distinct Entity Types




                       3753 X1
3753 X1
Relationships of Higher Degree


q   Relationship types of degree 2 are called binary
q   Relationship types of degree 3 are called ternary
    and of degree n are called n-ary
q   In general, an n-ary relationship is not equivalent to
    n binary relationships



Chapter 3-56
TERNARY RELATIONSHIPS




               © The Benjamin/Cummings Publishing Company, Inc. 1994, Elmasri/Navathe, Fundamentals of Database Systems, Second Edition
Chapter 3-57
TERNARY RELATIONSHIP-
                  Instance Diagram
  SUPPLIER             SUPPLY      PROJECT


      s1   q             r1             j
                                       q 1
      s2   q
                         r2
                                        j
                                       q 2
                         r3

     PART                r4
                                        j
                                       q 3

                         r5
      p1   q


      p2   q
                         r6

      p3   q             r7

Chapter 3-58
Problem with constraints on
      higher order relationship types

                                 m
                                                     n



                                                p




       What does it mean to put m:n:p on the three arms of the relationship ?
       It is essentially meaningless.



Chapter 3-59
TERNARY VS. BINARY
                              RELATIONSHIPS




               © The Benjamin/Cummings Publishing Company, Inc. 1994, Elmasri/Navathe, Fundamentals of Database Systems, Second Edition
Chapter 3-60
The (min,max) notation for
       higher order relationship type
                constraints
                        (1,2)                    (1,3)




                                      (1,5)




       A Teacher can offer min 1 and max 2 Offerings
       A Course may have 1 to 3 Offerings
       A Student may enroll in from 1 to 5 Offerings
Chapter 3-61

Más contenido relacionado

Similar a Introduction er & eer

Similar a Introduction er & eer (20)

Day 1 SQL.pptx
Day 1 SQL.pptxDay 1 SQL.pptx
Day 1 SQL.pptx
 
SQL.pptx
SQL.pptxSQL.pptx
SQL.pptx
 
ERModel1.pdf
ERModel1.pdfERModel1.pdf
ERModel1.pdf
 
Copy Of Univ
Copy Of UnivCopy Of Univ
Copy Of Univ
 
Univ
UnivUniv
Univ
 
OOAD.pptx
OOAD.pptxOOAD.pptx
OOAD.pptx
 
Revision ch 3
Revision ch 3Revision ch 3
Revision ch 3
 
er-models.pptx
er-models.pptxer-models.pptx
er-models.pptx
 
DATA MODEL PRESENTATION UNIT I-BCA I.pptx
DATA MODEL PRESENTATION UNIT I-BCA I.pptxDATA MODEL PRESENTATION UNIT I-BCA I.pptx
DATA MODEL PRESENTATION UNIT I-BCA I.pptx
 
Anomalies in database
Anomalies in databaseAnomalies in database
Anomalies in database
 
10287 lecture5(2)
10287 lecture5(2)10287 lecture5(2)
10287 lecture5(2)
 
Cn presentation on the topic called as re modelling
Cn presentation on the topic called as re modellingCn presentation on the topic called as re modelling
Cn presentation on the topic called as re modelling
 
Introduction to Database Management Systems
Introduction to Database Management Systems Introduction to Database Management Systems
Introduction to Database Management Systems
 
123
123123
123
 
Lecture-2 - Relational Model.pptx
Lecture-2 - Relational Model.pptxLecture-2 - Relational Model.pptx
Lecture-2 - Relational Model.pptx
 
Summary data modelling
Summary data modellingSummary data modelling
Summary data modelling
 
Data structure chapter 1.pptx
Data structure chapter 1.pptxData structure chapter 1.pptx
Data structure chapter 1.pptx
 
Database management systems 3 - Data Modelling
Database management systems 3 - Data ModellingDatabase management systems 3 - Data Modelling
Database management systems 3 - Data Modelling
 
3-db-er_3-db-er_3-db-er_3-db-er_3-db-er.pptx
3-db-er_3-db-er_3-db-er_3-db-er_3-db-er.pptx3-db-er_3-db-er_3-db-er_3-db-er_3-db-er.pptx
3-db-er_3-db-er_3-db-er_3-db-er_3-db-er.pptx
 
Entityrelationshipmodel
EntityrelationshipmodelEntityrelationshipmodel
Entityrelationshipmodel
 

Más de saurabhshertukde (19)

Revision sql te it new syllabus
Revision sql te it new syllabusRevision sql te it new syllabus
Revision sql te it new syllabus
 
Oodbms ch 20
Oodbms ch 20Oodbms ch 20
Oodbms ch 20
 
Introduction er & eer
Introduction er & eerIntroduction er & eer
Introduction er & eer
 
Integrity & security
Integrity & securityIntegrity & security
Integrity & security
 
Er model
Er modelEr model
Er model
 
Er & eer to relational mapping
Er & eer to relational mappingEr & eer to relational mapping
Er & eer to relational mapping
 
Eer case study
Eer case studyEer case study
Eer case study
 
Chapter 2
Chapter 2Chapter 2
Chapter 2
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 
Chapter 9
Chapter 9Chapter 9
Chapter 9
 
J2 ee archi
J2 ee archiJ2 ee archi
J2 ee archi
 
J2 ee architecture
J2 ee architectureJ2 ee architecture
J2 ee architecture
 
Software project-scheduling
Software project-schedulingSoftware project-scheduling
Software project-scheduling
 
Softwareproject planning
Softwareproject planningSoftwareproject planning
Softwareproject planning
 
Pressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-modelsPressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-models
 
Design concepts and principles
Design concepts and principlesDesign concepts and principles
Design concepts and principles
 
Analysis modelling
Analysis modellingAnalysis modelling
Analysis modelling
 
Analysis concepts and principles
Analysis concepts and principlesAnalysis concepts and principles
Analysis concepts and principles
 
Risk analysis
Risk analysisRisk analysis
Risk analysis
 

Último

08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 

Último (20)

08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 

Introduction er & eer

  • 2. Definitions • Data: known facts that can be recorded • Database: a collection of data • represents some aspect of the real world • logically coherent collection (not a random collection) • designed, built & populated for a specific purpose • Database Management System: the software that manages the data
  • 3. DBMSs provide... • Facilities to: – Define – specify data types, structures & constraints for the data to be stored in the database – Construct – store the data – Manipulate – pose queries to retrieve specific data, update data or generate reports based on the data
  • 4. Popular Examples • Company Databases – employees, departments, projects … • Airline Reservation Systems – flights, fares, customers, reservations .. • Library Databases – authors, titles, publishers, videos … • Bank Databases – accounts, customers ...
  • 5. Schemas & Instances • Important to distinguish between – database schema: the description of the database – database: the stored data
  • 6. Financial Records (Company, Type, Name, Date, Amt, NumShares, Broker) Company Type Name Date Amt NumShares Broker Trimark Mutual Trimark 01/01/84 49.75 100 C. Harris Fund Fund AGF Mutual Foreign 01/01/94 62.25 1000 C. Harris Fund Equity
  • 7. Database States • Empty State -- database is empty when we first define the database schema • Initial State -- database is first populated or loaded with data • Current State -- snapshot in time 3753 7
  • 8. DBMS Languages • DDL: Data Definition Language – used to define/change the structure of the database • DML: Data Manipulation Language – used to query the database, insert data, change data or delete data 3753 8
  • 9. Classification of DBMSs • Data Model Classification – relational, network, hierarchical, object- oriented … • Number of users – single user or multi-user • Number of Sites – centralized vs distributed • Cost of the DBMS 3753 9
  • 10. Data Model • A collection of concepts that can be used to define the structure (data, data types, relations and constraints) of a database. • Examples: – Entity Relationship model – Relational Model – hierarchical & network models – object-data models
  • 12. Entity-Relationship Model • Most popular conceptual model for database design • Basis for many other models • Describes the data in a system and how that data is related • Describes data as entities, attributes and relationships 3753 X1
  • 13. Database requirements • We must convert the written database requirements into an E-R diagram • Need to determine the entities, attributes and relationships. – nouns = entities – adjectives = attributes – verbs = relationships 3753 X1
  • 14. The Pieces • Objects – Entity (including weak entities) – Attribute – Relationship • “Structural” Constraints – Cardinality – Participation 3753 X1
  • 15. Entities • Entity – basic object of the E-R model – Represents a “thing” with an independent existence – Can exist physically or conceptually • a professor, a student, a course • Entity type – used to define a set of entities with the same properties. 3753 X1
  • 16. Entity and Entity Types Name Number Topic Entity Type Course Number: 3753 Entity Name: Database Management Systems Topic: Introduction to DBMSs 3753 X1
  • 17. Attributes • Each entity has a set of associated properties that describes the entity. These properties are known as attributes. • Attributes can be: – Simple or Composite – Single or Multi-valued – Stored or Derived – NULL 3753 X1
  • 18. Attributes (cont’d) Simple Professor Start Date First Professor Composite Name Last 3753 X1
  • 19. Attributes (cont’d) Single Professor Employee ID# Multi-Valued Professor Email 3753 X1
  • 20. Attributes (cont’d) Stored Professor Start Date Derived Professor Years Teaching 3753 X1
  • 21. Attributes (cont’d) • NULL attributes have no value – not 0 (zero) – not a blank string • Attributes can be “nullable” where a null value is allowed, or “not nullable” where they must have a value. 3753 X1
  • 22. Primary Keys Professor Employee ID • Employee ID is the primary key • Primary keys must be unique for the entity in question 3753 X1
  • 23. Relationships • defines a set of associations between various entities • can have attributes to define them • are limited by: – Participation – Cardinality Ratio 3753 X1
  • 24. Relationships (cont’d) Section part of Course 3753 X1
  • 25. Participation • Defines if the existence of an entity depends on it being related to another entity with a relationship type. – Partial – Total Section part of Course 3753 X1
  • 26. Cardinality • The number of relationships that an entity may participate in. – 1:1, 1:N, N:M, M:1 N 1 Section part of Course 3753 X1
  • 27. Weak entity • Weak entities do not have key attributes of their own. • Weak entities cannot exist without another a relationship to another entity. • A partial key is the portion of the key that comes from the weak entity. The rest of the key comes from the other entity in the relationship. • Weak entities always have total participation as they cannot exist without the identifying relationship. 3753 X1
  • 28. Weak Entity (cont’d) Section ID Section Descriminator Identifying Relationship part of Number Course 3753 X1
  • 29. Acadia Teaching Database Design an E-R schema for a database to store info about professors, courses and course sections indicating the following: • The name and employee ID number of each professor • The salary and email address(es) for each professor • How long each professor has been at the university • The course sections each professor teaches • The name, number and topic for each course offered • The section and room number for each course section • Each course section must have only one professor • Each course can have multiple sections 3753 X1
  • 30. Visual View of the Database Employee ID Start Date Years Teaching Section ID Room 1 N Professor teaches Section Email N Salary First Name Part of Last 1 Number Course Topic Name
  • 31. University DB Case Study • Maintain the following information about undergraduate students: – Name, address, student number, date of birth, year of study, degree program (BA, BSc, BCS), concentration (Major, Honours, etc) and department of concentration. • Note: An address is composed of a street, city, province and postal code; the student number is unique for each student 3753 X1
  • 32. University Case Study (cont’d) • Maintain information about departments – Name, code (CS, Phy), office phone, and faculty members • Maintain information about courses: – Course number (3753), title, description, prerequisites. • Maintain information about course sections: – Section (A, B, C), term (X1), slot #, instructor 3753 X1
  • 33. University Case Study (cont’d) • Maintain information about faculty: – Name, rank, employee number, salary, office number, phone number and email address. – Note: employee number is unique • Maintain a program of study for the current year for each student: – i.e. courses that each student is enrolled in 3753 X1
  • 34. Address Street Number N M Section Enrolled Student Number City Term Name Province Slot N N 1 Teaches DOB Postal Code Has Salary Name 1 N Faculty Number Number Prereq Office 1 N Title Course M Phone Start Date Head Member Description Email 1 1 End Date Code Rank N 1 Name Offer Dept Phone
  • 35. Extended E-R Model • E-R model is sufficient for traditional database applications • Nontraditional applications (CAD, multimedia) have more complex requirements • Can extend traditional E-R diagrams with semantic data modeling concepts 3753 X1
  • 36. IS-A Relationship Name Employee S.S.N. IS-A Staff Faculty Teaching Assistant Position Rank Student # 3753 X1
  • 37. Specialization & Generalization • Specialization – process of taking an entity and creating several specialized subclasses • Generalization – process of taking several related entities and creating a general superclass • We will talk mainly of specialization, but most information will also apply to generalization 3753 X1
  • 38. Specialization constraints • Specializations can be predicate-defined or attribute-defined or user-defined • Disjointness constraint – specialization is disjoint or overlapping • Completeness constraint – specialization is total or partial 3753 X1
  • 39. Predicate-defined subclass • An attribute value is used to determine the members of a subclass • Not all members of every subclass can be determined by the attribute value • In the following example, the Pension Plan type can be used to determine faculty from staff, but has no effect on students or those who opted out of the pension plan. 3753 X1
  • 40. Predicate-defined subclass Pension Person S.S.N. Plan Type Note: not all d employees included Staff Faculty Position Rank 3753 X1
  • 41. Attribute-defined subclass • There is one defining attribute for all subclasses • Each member of the superclass can be assigned to the appropriate subclass based on this one attribute 3753 X1
  • 42. Attribute-defined subclass Jobtype Employee S.S.N. Jobtype d “Faculty” “Staff” “Student” Staff Students Faculty Rank Year Rank 3753 X1
  • 43. User-defined subclass • When there is no condition to automatically determine membership in a subclass, it must be done at the discretion of the user. 3753 X1
  • 44. Disjointness constraint • Specifies that an entity can be a member of at most one subclass • There can be no overlap between the subclasses • We use the notation of a d in a circle to symbolize that the subclasses are disjoint 3753 X1
  • 45. Disjoint constraint Name Employee S.S.N. d Staff Teaching Assistant Faculty Position Rank Student # 3753 X1
  • 46. Overlap • Entities are able to belong to more than one subclass • Notation is an o inside of a circle 3753 X1
  • 47. Overlap Jobtype Employee S.S.N. A staff member may o also be a student Staff Students Faculty Rank Year Rank 3753 X1
  • 48. Completeness Constraint • May be total or partial • for total, every entity in the superclass must belong to a subclass • for partial, entities in the superclass do not need to be part of any subclass • notation for total and partial are the same as in a regular E-R diagram – single and double lines 3753 X1
  • 49. Partial Pension Person S.S.N. Plan Type d Staff Faculty Rank Rank 3753 X1
  • 50. Total Jobtype Employee S.I.N. o Staff Students Faculty Rank Year Rank 3753 X1
  • 51. Hierarchies and Lattices • Hierarchies – a tree-like structure where each subclass belongs to only one superclass • Lattices – a graph-like structure where a subclass can belong to more than one superclass 3753 X1
  • 52. Lattice name Person o student # Employee Student salary Teaching Assistant course 3753 X1
  • 54. Union Types and Lattice • Lattice – Subset of the Intersection of the superclasses. – A shared subclass (Teaching Assistant) is the subclass in two distinct superclass relatioships • Union Types – Subset of the unoin of distinct Entity Types 3753 X1
  • 56. Relationships of Higher Degree q Relationship types of degree 2 are called binary q Relationship types of degree 3 are called ternary and of degree n are called n-ary q In general, an n-ary relationship is not equivalent to n binary relationships Chapter 3-56
  • 57. TERNARY RELATIONSHIPS © The Benjamin/Cummings Publishing Company, Inc. 1994, Elmasri/Navathe, Fundamentals of Database Systems, Second Edition Chapter 3-57
  • 58. TERNARY RELATIONSHIP- Instance Diagram SUPPLIER SUPPLY PROJECT s1 q r1 j q 1 s2 q r2 j q 2 r3 PART r4 j q 3 r5 p1 q p2 q r6 p3 q r7 Chapter 3-58
  • 59. Problem with constraints on higher order relationship types m n p What does it mean to put m:n:p on the three arms of the relationship ? It is essentially meaningless. Chapter 3-59
  • 60. TERNARY VS. BINARY RELATIONSHIPS © The Benjamin/Cummings Publishing Company, Inc. 1994, Elmasri/Navathe, Fundamentals of Database Systems, Second Edition Chapter 3-60
  • 61. The (min,max) notation for higher order relationship type constraints (1,2) (1,3) (1,5) A Teacher can offer min 1 and max 2 Offerings A Course may have 1 to 3 Offerings A Student may enroll in from 1 to 5 Offerings Chapter 3-61

Notas del editor

  1. 22
  2. 26