1 / 25

Data Modeling Seminar

Data Modeling Seminar. February 18 , 2012 Lesson 4 Normalization. Lesson 4. Normalization Rules for Data MySQL By: Joshua Mostafa Publisher: Virtual Training Company, Inc. Pub. Date: July 25, 2002 Print ISBN-10: 1-930519-74-5 Normalization Part 1 Normalization Part 2.

ayla
Télécharger la présentation

Data Modeling Seminar

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. Data ModelingSeminar February 18, 2012 Lesson 4 Normalization

  2. Lesson 4 • Normalization Rules for Data MySQL • By: Joshua Mostafa • Publisher: Virtual Training Company, Inc. • Pub. Date: July 25, 2002 • Print ISBN-10: 1-930519-74-5 • Normalization Part 1 • Normalization Part 2

  3. Normalization • In the field of relational database design, normalization is a systematic way of ensuring that a database structure is suitable for general-purpose querying and free of certain undesirable characteristics — insertion, update, and deletion anomalies — that could lead to loss of data integrity.

  4. Normalization • Informally, a relational database table is often described as "normalized" if it is in the Third Normal Form (3NF). • Most 3NF tables are free of insertion, update, and deletion anomalies,

  5. Normalization • The objectives of normalization beyond 1NF (First Normal Form) • To free the collection of relations from undesirable insertion, update and deletion dependencies; • To reduce the need for restructuring the collection of relations as new types of data are introduced, and thus increase the life span of application programs; • To make the relational model more informative to users; • To make the collection of relations neutral to the query statistics, where these statistics are liable to change as time goes by. E.F. Codd, "Further Normalization of the Data Base Relational Model"

  6. 1NF - First Normal Form Chris Date, "What First Normal Form Really Means", pp. 127-8 • There's no top-to-bottom ordering to the rows. • There's no left-to-right ordering to the columns. • There are no duplicate rows. • Every row-and-column intersection contains exactly one value from the applicable domain. • All columns are regular i.e. rows have no hidden components such as row IDs, object IDs, or hidden timestamps. • Simply Stated: Table represents a relation and has no repeating groups

  7. 1NF - First Normal Form Suppose a novice designer wishes to record the names and telephone numbers of customers. He defines a customer table which looks like this:

  8. 1NF - First Normal Form The designer then becomes aware of a requirement to record multiple telephone numbers for some customers. He reasons that the simplest way of doing this is to allow the "Telephone Number" field in any given record to contain more than one value: Assuming, however, that the Telephone Number column is defined on some Telephone Number-like domain (e.g. the domain of strings 12 characters in length), the representation above is not in 1NF. 1NF (and, for that matter, the RDBMS) prevents a single field from containing more than one value from its column's domain.

  9. 1NF - First Normal Form The designer might attempt to get around this restriction by defining multiple Telephone Number columns: This representation, however, makes use of nullable columns, and therefore does not conform to Date's definition of 1NF.

  10. Problems • Difficulty in querying the table. It is awkward to answer such questions as • "Which customers have telephone number X?" • "Which pairs of customers share a telephone number?" • Inability to enforce uniqueness of Customer-to-Telephone Number links through the RDBMS. • Restriction of the number of telephone numbers per customer to two. • If a customer with three telephone numbers comes along, we are constrained to record only three and leave the third unrecorded. • This means that the database design is imposing constraints on the business process, rather than vice-versa.

  11. 1NF - First Normal Form • The designer might, alternatively, retain the single Telephone Number column but alter its domain, making it a string of sufficient length to accommodate multiple telephone numbers: This design is consistent with 1NF, but still presents several design issues.

  12. Problems • The Telephone Number heading becomes semantically confused, as it can now represent either a telephone number, a list of telephone numbers, or indeed anything at all. • A query such as: “Which pairs of customers share a telephone number?“ is more difficult to formulate, given the necessity to cater for lists of telephone. • Meaningful constraints on telephone numbers are also very difficult to define in the RDBMS with this design.

  13. A Design that Conforms to 1NF A design that is unambiguously in 1NF makes use of two tables: a Customer Name table and a Customer Telephone Number table. Repeating groups of telephone numbers do not occur in this design. Instead, each Customer-to-Telephone Number link appears on its own record.

  14. 2NF – Second Normal Form • A 1NF table is in 2NF if and only if all its non-prime attributes are functionally dependent on the whole of every candidate key. • A table that is in first normal form (1NF) must meet additional criteria if it is to qualify for second normal form. • Specifically: a 1NF table is in 2NF if and only if, given any candidate key K and any attribute A that is not a constituent of a candidate key, A depends upon the whole of K rather than just a part of it.

  15. 2NF – Example • Consider a table describing employees' skills: Neither {Employee} nor {Skill} is a candidate key for the table. Noted by the Underline

  16. 2NF – Example This is because a given Employee might need to appear more than once (he might have multiple Skills), and a given Skill might need to appear more than once (it might be possessed by multiple Employees). Only the composite key {Employee, Skill} qualifies as a candidate key for the table.

  17. 2NF – Example • The remaining attribute, Current Work Location, is dependent on only part of the candidate key, namely Employee. Therefore the table is not in 2NF. • Note the redundancy in Current Work Locations: • We are told three times that Jones works at 114 Main Street, and twice that Ellis works at 73 Industrial Way.

  18. 2NF – Example • A 2NF alternative to this design would represent the same information in two tables: an "Employees“ table with candidate key {Employee}, and an "Employees' Skills" table with candidate key {Employee, Skill}:

  19. 3NF – Third Normal Form • 3NF was originally defined by E.F. Codd in 1971. • Codd'sdefinition states that a table is in 3NF if and only if both of the following conditions hold: • The relation R (table) is in second normal form (2NF) • Every non-prime attribute of R is non-transitively dependent (i.e. directly dependent) on every candidate key of R.

  20. 3NF – Third Normal Form • An example of a 2NF table that fails to meet the requirements of 3NF is: Because each row in the table needs to tell us who won a particular Tournament in a particular Year, the composite key {Tournament, Year} is a minimal set of attributes guaranteed to uniquely identify a row. That is, {Tournament, Year} is a candidate key for the table.

  21. 3NF – Third Normal Form • The breach of 3NF occurs because the non-prime attribute Winner Date of Birth is transitively dependent on the candidate key {Tournament, Year} via the non-prime attribute Winner. • The fact that Winner Date of Birth is functionally dependent on Winner makes the table vulnerable to logical inconsistencies, as there is nothing to stop the same person from being shown with different dates of birth on different records.

  22. 3NF – Third Normal Form • In order to express the same facts without violating 3NF, it is necessary to split the table into two: Update anomalies cannot occur in these tables, which are both in 3NF.

  23. Questions

  24. Lab 3 Normalization • 1NF– First Normal Form • 2NF – Second Normal Form • 3NF – Third Normal Form

More Related