1 / 35

Introduction to modeling

Introduction to modeling. Object-role modelling (ORM) Slides for this part are based on Chapters 3-7 from Halpin , T. & Morgan, T. 2008, Information Modeling and Relational Databases , Second Edition (ISBN: 978-0-12-373568-3), published by Morgan Kaufmann Publishers. Where are we?.

davidwlee
Télécharger la présentation

Introduction to modeling

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to modeling Object-role modelling (ORM) Slides for this part are based on Chapters 3-7 from Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition (ISBN: 978-0-12-373568-3), published by Morgan Kaufmann Publishers.

  2. Where are we?

  3. Object-role modelling (ORM) • Modeling Language/Notation • Modeling Method • Three important principles: • Ogdens triangle: relationship between reality and the model • Natural language: the model must be expressed so that it can be understood by informed users • 100% principle: we can build an accurate enough model of reality

  4. Conceptual Schema Design Procedure Seven steps: • Transform familiar examples into elementary facts. • Draw the fact types, and apply a population check. • Check for entity types to be combined, and note any arithmetic derivations. • Add uniqueness constraints, and check the arity of fact types. • Add mandatory role constraints, and check for logical derivations. • Add value, set-comparison, and subtyping constraints. • Add other constraints and perform final checks. Material on this slide based on Ch 3.2 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  5. Elementary facts • A fact that can not be divided without losing meaning is called elementary • Example: • Alice likes ice-cream and juice • This fact is not elementary because it can be replaced by two elementary phrases • Alice likes ice-cream • As like juice

  6. Which of these facts are elementary? • John was born 11th of Oct 2012. • John and Tom are brothers. • John sings. • IN1237 is a white Mercedes. • John got B in CS1322. • Anna was hired as engineer on 01/01/2012.

  7. Facts • Consider the fact “John takes CS1231” • There is information that is implied: • John is the name of a student • CS1231 is a course code • What we mean is that student with name John takes the course with the course code CS1231

  8. Facts (cont’) • Consider the fact: • “Student with name John takes the course with the course code CS1231” • “student" and “course" are concepts • “name" and “course code" are their representations • “John" and “CS1231" are instances (data)

  9. Facts and fact types • The two sentences below have the same meaning: • "The student with name John takes the course with the course code CS1231” • "The course with course code CS1231 has participant the student with name John” • Similar facts can be created by replacing instances:"The student with the name Anna takes the course with the course code CS1100” • In ORM notation, fact types are represented as follows:

  10. Concepts and representations • Concepts and representations are depicted as solid and resp dashed rectangles with rounded corners • e.g. the concept Student and representation StudentId is depicted as follows: • In ORM, the word object types is used as a generic term for concepts and representations

  11. Arity • Number of concepts in a fact is called fact arity • Elementary sentence 'Student with name John got on the course with the course code CS1231 grade B“ • contains three concepts: ”Student ",“Course“ and “Grade“ => the fact has arity 3 • Facts with arity 1 are called unary • Facts with arity 2 are called binary • Facts with arity 3 are called ternary • One can construct facts with arbitrarily high arities – n-aries

  12. Roles and fact types • Roles are relationship parts played by objects – depicted as boxes • Optionally, roles may be given a name, in which case the role name is displayed in square brackets next to the role box, e.g.  

  13. Reference Types • Elementary facts are relationships between entities • References are relationships between entities and values • Provide the bridge between the world of entities and the world of values

  14. Fact tables • A fact table is a table for displaying instances of a fact type

  15. Objectification • Treats a relationship between objects as an object itself

  16. Uniqueness constraints • Ensure entries in fact tables are unique • A single role with a uniqueness bar means that entries in the associated column must be unique in that column (i.e., no duplicates are allowed in that column)

  17. The four uniqueness constraint patterns for a binary Material on this slide based on Ch 4.2 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  18. Uniqueness Constraints on Longer Fact Types • Example: “John measured 10C at 10am in Innsbruck” • Three main questions one always must ask: • What concepts do we have? • What representation do we use for the concepts? • Is the fact elementary in our UoD, and if it is not, how can it be split into elementary facts?

  19. Uniqueness Constraints on Longer Fact Types (cont’) • Example: “John measured 10C at 11am in Innsbruck” • John is a person with representation person name • 10 is a temperature with representation degrees C • 11am is a time point with representation of time and date • Innsbruck is a is a place with representation place name • To determine whether the sentence is elementary, we use fact tables

  20. Uniqueness Constraints on Longer Fact Types (cont’) • Which table entry needs to be removed? • Where should the uniqueness constraint be placed?

  21. “n-1 rule” • A fact with arity n is never elementary if the corresponding fact table has a uniqueness constraint which is shorter than n-1 • If the shortest uniqueness constraint has length n-1, the fact is elementary • Facts with arity 1 or 2 are always elementary

  22. Uniqueness Constraints on Longer Fact Types (cont’) • The two facts have in common that Time and Place together determine a third value • But does not imply that both temperature and Person instances are determined by the same combination of Time and Place

  23. External Uniqueness Constraints • Apply to roles from different predicates

  24. Populations of roles/concepts • Population of roles pop(r) = population of role r = set of objects referenced in the column for r • Role populations are used to determine concept populations • Population of a concept A which plays rtoles r1, r2, ..., rn is:pop(A) = pop(r1)  pop(r2)  ...  pop(rn) • Note: The population of a role / concept varies with time

  25. Mandatory and Optional Roles • A role is mandatory if and only if, for all states of the database, the role must be played by every member of the population of its object type; otherwise the role is optional • A mandatory role is also called a total role, since it is played by the total population of its object type • To indicate explicitly that a role is mandatory, a mandatory role dot is added to the line that connects the role to its object type Material on this slide based on Ch 5.2 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  26. Inclusive-or constraint Material on this slide based on Ch 5.2 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  27. Reference Schemes • Reference schemes are abbreviated as reference modes in parentheses.  • Reference schemes depicted explicitly—each appears as a mandatory, 1:1 reference type. • Compound reference scheme Material on this slide based on Ch 5.3 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  28. Value Constraints • Limit the possible instances of a concept • In practice: Specify a range of values ​​that are legal representations - eg. by direct enumeration of values​​, specifying a lower and / or upper limit, etc Material on this slide based on Ch 6.3 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  29. Subset, Equality, and Exclusion Constraints Material on this slide based on Ch 6.4 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  30. Subtyping • B is a proper subtype of A • B and C are mutually exclusive (a), exhaustive (b), or both (c) Material on this slide based on Ch 6.5 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  31. Ring constraints Material on this slide based on Ch 7.3 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  32. Implementing a Conceptual Schema • Design the conceptual schema • Annotate the conceptual schema with mapping choices as needed • Map the design to a logical schema (e.g., relational or object-relational) • Finesse the logical schema as needed (e.g., rename or reorder some columns) • Generate the physical schema (e.g., in Microsoft SQL Server or IBM DB2) • Create external schema(s) (e.g., forms, reports) • Enforce security levels as needed • Populate the database • Issue queries and updates • Update the schemas as needed Material on this slide based on Ch 11.1 in Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition

  33. Resources • Halpin, T. & Morgan, T. 2008, Information Modeling and Relational Databases, Second Edition (ISBN: 978-0-12-373568-3), published by Morgan Kaufmann Publishers, an imprint of Elsevier.  • http://www.ormfoundation.org/ • http://www.orm.net/ • Tools: http://www.ormfoundation.org/files/10/default.aspx • ORM Lite: http://www.ormfoundation.org/files/folders/orm_lite/default.aspx

  34. Next lecture

  35. Questions?

More Related