1 / 221

SQL Unit 17 Normalization

SQL Unit 17 Normalization. prepared by Kirk Scott. 1. Normal Forms 2. First Normal Form 3. Second Normal Form 4. Third Normal Form 5. Boyce- Codd Normal Form 6. Fourth Normal Form 7. Fifth Normal Form 8. Domain Key Normal Form 9. Nulls and Integrity. 1. Normal Forms.

Download Presentation

SQL Unit 17 Normalization

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. SQL Unit 17Normalization prepared by Kirk Scott

  2. 1. Normal Forms • 2. First Normal Form • 3. Second Normal Form • 4. Third Normal Form • 5. Boyce-Codd Normal Form • 6. Fourth Normal Form • 7. Fifth Normal Form • 8. Domain Key Normal Form • 9. Nulls and Integrity

  3. 1. Normal Forms • The benefits of relational database theory can be summarized as follows: • There is a step-by-step way of arriving at a correct design • There is a way of detecting flaws in a design • The design process has to do with the problem domain, not with computer-related questions

  4. The database designer and user are protected from questions related to the implementation of the dbms and the hardware it’s running on • Finally, if the design is correct, it will be possible to: • Store all desired information in it; • Update the information on an ongoing basis; • Retrieve any/all of the information as needed.

  5. Correct designs are based on what are called normal forms. • This section presents the background information to the design process. • It also discusses and illustrates the use of normal forms.

  6. Identifying Entities • At its most basic level, design of a database depends on determining what you want to store information about. • When deciding what the base tables will be, you are trying to identify entities. • From a language point of view, this involves identifying nouns which do not modify other things.

  7. Identifying Attributes • Identifying the entities leads to identifying their attributes. • Attribute names usually end up being nouns too, but you figure out what they are when you try to describe entities, and the descriptions usually involve adjectives. • One of the key points of database design is that you only store information about the entities and attributes you need to.

  8. There may be many possible entities • All entities may have a long list of potential attributes • But you limit yourself to only those things you will need to retrieve information about in the future.

  9. Identifying Keys • You are familiar with primary keys and foreign keys. • When trying to organize the attributes around entities in the design, the idea is to equate an entity with a primary key field • Then group the attributes with the entities that they describe. • Relationships between tables are captured by embedding the primary keys of one or more tables as foreign keys in other tables.

  10. Functions, Determination, and Dependency • When described in general, the foregoing sounds sensible enough. • That’s why the book claims that if you can model successfully, the result will be a correct design • In practice it can be difficult to do without formal guidelines. • This is what the normal forms provide.

  11. The normal forms are based on and described in terms of an idea taken from math. • One field in a table may functionally determine another. • Stated in reverse order: The other field depends functionally on the one.

  12. This is an example of a mathematical function: • y = f(x), for example, y = x2 • y is a function of x. • x is in the domain and y is in the range. • x functionally determines y • Or, y functionally depends on x.

  13. For a mathematical function, you find the dependent value by doing some sort of computation on the determining value. • The key point underlying a function is the following: • For each value of x, there can only be one corresponding value of y. • x uniquely determines y.

  14. The analogy in database design is the following: • The primary key of a table should functionally determine the values of the other fields in the table. • In other words, the non-key fields should functionally depend on the primary key field. • Just as the primary key uniquely identifies a record, it uniquely determines the values of the fields in the record

  15. Take this small table for example: • This is its schema: • Person(SSN, name, dob)

  16. You don’t find a person’s name or birthdate by doing a computation on their social security number. • However, given any one social security number, there is exactly one corresponding name and exactly one corresponding date of birth. • It is true that different people with different social security numbers may have the same name and the same date of birth, but this is not a problem.

  17. The point of the primary key field is that it is the unique identifier that makes it possible to distinguish between these two people. • This idea came up at the beginning of the course • The point now is that the name and date of birth fields functionally depend on the social security number field.

  18. A new notation can be used to indicate this. • In this notation, the arrows go from the field that functionally determines another field, to the field that is dependent. • This is illustrated on the next overhead.

  19. Normal Forms • Some of the normal forms are identified by number, for example 1st, 2nd, and 3rd normal forms. • Others are identified by name, for example Boyce-Codd normal form, named after the people who discovered it. • These four normal forms are abbreviated 1NF, 2NF, 3NF, and BCNF, respectively. • There are also higher normal forms, 4th, 5th, and domain key normal forms (4NF, 5NF, DKNF).

  20. The normal forms have to do with finding dependencies in tables which spring from fields other than the primary key. • These dependencies are undesirable and may be referred to as stray dependencies. • The normal forms make increasingly strict statements about the kinds of stray dependencies that have to be eliminated from correctly designed tables. • Designs containing stray dependencies are said to violate the normal forms.

  21. Eliminating Dependencies • The design process using normal forms consists of repetitive steps: • Make a design • Identify stray dependencies (normal form violations) • Redesign to eliminate the dependencies • Once you’ve eliminated all occurrences of one type of violation, you will have promoted the design into the next higher normal form • Repeat until you’ve reached the highest normal form

  22. The rule of thumb at every stage is to remove stray dependencies in the following way: • Make any field which determines other fields the primary key of a new table, and move the fields that depend on that field to the new table. • Make sure that the new table is connected to the old table by a primary key, foreign key pair.

  23. Anomalies • Design problems that are based on violations of normal forms lead to what are called anomalies. • The hallmark of a problematic design is that the same information is stored multiple times. • In other words, there is redundancy in the database. • Depending on the nature of the redundancy, this can lead to problems when inserting data, when updating data, and when deleting data.

  24. Justifying Normal Forms • The use of normal forms may seem unnecessarily theoretical at first. • However, they provide a convenient way of identifying problems in designs and then eliminating them. • Normal forms are what justify these claims about relation databases: • There is a step-by-step way of arriving at a correct design • There is a way of detecting flaws in a design

  25. The Plan of Action for the Following Sections • Each of the following sections will present a normal form in this way: • A definition of the normal form will be given. • A scenario for information to be held in a database will be given, with the underlying assumptions given. • An example database design which violates the normal form will be given

  26. The violation will be shown using a diagram with the notation indicating functional dependencies. • The desired functional dependencies from the primary key will be shown using arrows below the field names. • Undesired, stray dependencies, which need to be eliminated in order to correct the design, will be shown using arrows above the field names.

  27. Anomalies resulting from the incorrect design will be discussed. • In general, there will be insert, update, and delete anomalies • Finally, a corrected design will be given.

  28. Basis for Examples • All of the examples will be based on the general topic of cars, salespeople, customers, and car sales. • Some of the field names are abbreviated, and some of the fields clearly belong together in some way. • Here is a little preliminary explanation regarding the fields that will be in the examples. • Not all of the fields will appear in all of the examples.

  29. vin: vehicle identification number. Vehicles have makes, models, and years. • spno, spname: Salesperson number and name. • custno, custname: Customer number and name. • A car sale has a salesprice and a date.

  30. 2. First Normal Form • 1NF Definition: • Formally (Watson): • A relation is in first normal form if and only if all columns are single-valued. • Informally: • Data is stored in flat files; there can be no repeating groups in a record. • (This was mentioned in the very first unit.)

  31. The assumptions underlying the design are that a salesperson can sell many cars, but each car can only be sold by one salesperson. • In this design, each car is only sold once, so the design captures information about the sales of new cars. • These assumptions don’t cause the problem. • It is the implementation of them that causes the problem.

  32. Here is the design that violates 1NF: • Carsale(spno, spname, {vin, salesprice}) • The example design uses {} notation to indicate repeating groups of fields. • A diagram with arrows illustrating this design is given on the next overhead

  33. In general, normal form violations have insert, update, and delete anomalies. • It would be possible to consider such problems with a 1NF violation • However, the general form of anomalies is much clearer if they’re introduced with 2NF and higher normal form violations • The repeating group alone is a sufficient problem to make this kind of design incorrect and anomalies will not be discussed in this first case

  34. The solution to all basic normal form violations is the same: • Break out the stray dependency out into a separate table • In this case, break out the information contained in the repeating group

  35. As stated in the assumptions, one salesperson can sell many cars, but each car is sold only once, so there is a 1-m relationship between the two tables in the resulting design. • The primary key of the table containing salesperson information will have to be embedded as a foreign key in the table containing car information.

  36. Here is the corrected design: • Salesperson(spno, spname) • Carsale(vin, salesprice, spnof.k.)

  37. 3. Second Normal Form • 2NF Definition: • Formally (Watson): • A relation is in second normal form if an only if it is in first normal form, and all nonkey columns are dependent on the key • Informally: • In a table with a concatenated primary key field, there can be no stray dependencies that originate in just part of the primary key field.

  38. The basic idea is that all nonkey fields have to depend on the whole key. • Stating it in this way will lead to a useful mnemonic device which will be given later. • When you lay it out in this way, you begin to realize that 2NF deals with tables that have concatenated key fields, where a dependency from only one field of the key might be possible.

  39. In this example the underlying assumptions are that the same car can come back to the lot and be sold more than once. • It can be sold by the same salesperson more than once, but not on the same day. • It can also be sold by different salespeople at different times. • Although unlikely, the design is made so that two different salespeople could sell the same car on the same date.

  40. The design doesn’t contain any information about customers, but the scenario would be that one customer brought the car back, and a different salesperson sold it again. • It seems unlikely that the same customer would buy the same car twice, whether on the same date or different dates.

  41. In summary, this design works for used car sales and both the date and the salesperson information are needed, along with the car information, to distinguish between different sales.

  42. Here is the design that violates 2NF: • Carsale(vin, spno, date, spname) • A diagram with arrows illustrating this is given on the next overhead

  43. This faulty design has insert, update, and delete anomalies. • Suppose a salesperson has not yet sold a car. • In this case, it is not possible to insert information about that salesperson. • On the other hand, a salesperson may make many sales. • This means that the same information about that salesperson would be stored in more than one record in the table. • This is redundancy.

  44. Not only is the redundancy itself wasteful, it leads to the update anomaly. • Suppose the salesperson’s name changes. • Then it’s necessary to update multiple records to reflect this fact, not just one.

  45. The delete anomaly is related to the insert anomaly. • Suppose that as part of the maintenance of the database, on a yearly basis the sales table is cleared. • When you delete the last record containing a sale by a particular salesperson, you not only get rid of the sales record, you also lose the salesperson’s name.

  46. As usual, the solution to the problem is to break the stray dependency out into a table of its own. • Each car sale has only one salesperson, but each salesperson can be involved in many sales, so this is a 1-m many relationship. • The salesperson information is stored in a table by itself, and the primary key of the salesperson table is embedded as a foreign key in the car sale table.

  47. Here is the corrected design: • Salesperson(spno, spname) • Carsale(vin, date, spnof.k.)

More Related