1 / 18

Agenda: 02/06/2014

Agenda: 02/06/2014. Review concepts of design relationships. Learn more about relationships. Heuristics of a good ERD. Demonstrate MS Visio. Practice creating more ERD’s (if time…). Relationship review. We are purposely dividing data into entities to have less data redundancy.

talli
Télécharger la présentation

Agenda: 02/06/2014

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. Agenda: 02/06/2014 • Review concepts of design relationships. • Learn more about relationships. • Heuristics of a good ERD. • Demonstrate MS Visio. • Practice creating more ERD’s (if time…)

  2. Relationship review • We are purposely dividing data into entities to have less data redundancy. • Entities do not usually exist in isolation. • Entities are related because the data are related. • A relationship is a business association between two or more entities. • A relationship is a business rule. • An ERD is a simple modeling tool – it is not possible to depict every “real life” relationship with an ERD.

  3. Example: Binary M:N Relationship

  4. Example: 1:M Binary Relationships with Intersection Entity

  5. Example: 1:M Binary Relationships with Intersection Entity Depicts a Ternary Relationship

  6. Example: 1:1 Binary Relationship

  7. Example: 1:M Unary Relationship

  8. Examples of Unary Relationships

  9. A many-to-many (M:N) unary relationship must also be intersected

  10. Another type of relationship: Generalization (Enhanced ERD) • Generalization is the concept that some entities are very similar and have some attributes in common, but other attributes that are distinct. • An entity “supertype” contains those attributes that are in common. • An entity “subtype” contains those attributes that are distinct. An entity “subtype” adds other attributes to those inherited from the supertype. • Generalization allows an analyst to understand more fully the relationships between entities.

  11. Let’s go back to the consulting ERD…

  12. Depict the generalization hierarchy

  13. Generalization constraints • Constraints are limitations depicted on a data model. • The most common types of constraints are: • Completeness. Addresses the question of whether an instance of a supertype must also be a member of at least one subtype. • Result is either required or not required. • Indicated by a double line in Visio. • Disjointness. Addresses the question of whether an instance of a supertype may simultaneously be a member of two or more subtypes. • Result is specified as disjoint or overlap. • Indicated with either an “o” or a “d”.

  14. Heuristics: Redundant Data • Avoid redundant data that is composed of long alphanumeric data types. • Examples are names, addresses, comments, notes. • Standardize any “descriptive” attributes such as categories or types. • Put sample data in a few rows of each entity so that you can determine whether or not the data will be redundant. • If you don’t know what data will be stored, ask your client.

  15. Heuristics: Relationships • Do not include M:N relationships. • M:N relationships always produce data redundancy. • Divide M:N relationships with an intersection entity that will create at least two 1:M relationships. • A single intersection entity can be used to intersect more than two strong entities. • In a 1:M relationship, the foreign key is placed in the entity on the “many” side of the relationship.

  16. Heuristics for 1:1 Relationships • Examine all 1:1 relationships. Determine whether the attributes could all be placed in just one of the two entities eliminating the need for the relationship. • In a 1:1 relationship, the foreign key can be placed in either entity. Put the foreign key in the entity that seems most “reasonable” and also will result in the fewest number of null values.

  17. Heuristics: Primary Key • A “natural” primary key is composed of attributes that are already part of the application specification. • A “surrogate” primary key is created by the database designer for the explicit purpose of being a primary key. • A surrogate primary key should NEVER be concatenated. • For logical database design, try and find a natural primary key.

  18. Heuristics: More Primary Key • Never add more attributes than are absolutely necessary to create a primary key value unique. • Use the primary key of the related strong entity as part of the primary key for the associative entity, if the relationship with the associative entity is mandatory. • Use the primary keys of the strong entities as part or all of the primary key for the related intersection entity.

More Related