announcements
play

Announcements Department coin design contest deadline - IT420: - PDF document

Announcements Department coin design contest deadline - IT420: Database Management and February 6 Organization 6-week exam Monday, February 12 Lab 4 SQL SQL Server: Normalization ALTER TABLE tname ADD COLUMN newCol


  1. Announcements � Department coin design contest deadline - IT420: Database Management and February 6 Organization � 6-week exam – Monday, February 12 � Lab 4 – SQL � SQL Server: Normalization ALTER TABLE tname ADD COLUMN newCol (Chapter 3) int NOT NULL Kroenke, Database Processing SQL is hot! Facebook � Relational databases are accessed in much the same http://money.cnn.com/galleries/2007/news/0702/gallery.jobs_in_demand/6.html way across the board: SQL. Learning how SQL works is crucial to getting anything done in databases, and any GUI is largely a wrapper around the SQL statements one uses to make those actions happen. � Knowing a little about database design (layout, B-trees, file storage, normalization) is good, mostly for helping you understand good queries. � We run the LAMP stack here, so we primarily use MySQL databases across the site. I hope this helps a little. � Another good motivation may be found in the requirements for most engineering positions here on http://www.facebook.com/jobs.php#Opportunities ;) Kroenke, Database Processing Kroenke, Database Processing Database Design Process Goal � Requirements analysis � Understand normal forms � Conceptual design: Entity-Relationship Model � Logical design: transform ER model into relational schema � Schema refinement: Normalization � Physical tuning Kroenke, Database Processing Kroenke, Database Processing 1

  2. Premise Data Redundancy � We have one or more tables with data Number LastName FirstName Email Company Wing 190 Smith John jsmith@usna.edu 12 2 � The data is to be stored in a new database 673 Doe Jane jdoe@usna.edu 7 4 � QUESTION: keep or change tables 312 Doe Bob bred@usna.edu 6 6 structure? 152 Johnson Matt mat@usna.edu 7 4 Rule: All mids with same Company have the same Wing (Company � Wing) Problems due to data redundancy? Kroenke, Database Processing Kroenke, Database Processing Modification Anomalies Update Anomalies � Deletion Anomaly: What if we delete all � The MID table before and after an incorrect update operation on Wing for Company = 7 mids in Company 5? � Insertion Anomaly: What if we want to Number LastName FirstName Email Company Wing 190 Smith John jsmith@usna.edu 12 2 record the fact the Wing for Company 12 673 Doe Jane jdoe@usna.edu 7 4 312 Doe Bob bred@usna.edu 6 6 is 6? 152 Johnson Matt mat@usna.edu 7 4 � Update Anomaly: What if we change the Number LastName FirstName Email Company Wing Wing for Company 7 to be 3? 190 Smith John jsmith@usna.edu 12 2 673 Doe Jane jdoe@usna.edu 7 5 312 Doe Bob bred@usna.edu 6 6 152 Johnson Matt mat@usna.edu 7 4 Kroenke, Database Processing Kroenke, Database Processing Table decomposition Decisions Number LastName FirstName Email Company Wing 190 Smith John jsmith@usna.edu 12 2 � Do we have to decompose / merge? 673 Doe Jane jdoe@usna.edu 7 4 312 Doe Bob bred@usna.edu 6 6 152 Johnson Matt mat@usna.edu 7 4 � How do we identify problems caused by Number LastName FirstName Email Company Company Wing 190 Smith John jsmith@usna.edu 12 6 6 redundancy? 673 Doe Jane jdoe@usna.edu 7 7 4 � Functional dependencies 312 Doe Bob bred@usna.edu 6 12 2 152 Johnson Matt mat@usna.edu 7 Disadvantage? Kroenke, Database Processing Kroenke, Database Processing 2

  3. Functional Dependency (FD) Functional Dependency (FD) Rules � X � Y (X determines Y) � If A � (B, C), then A � B and A � C � If same value for X then same value for Y � If (A,B) � C, then � Examples: � neither A nor B determines C by itself � Any primary key � A and B determine C � Alpha � (Name, Class, DateOfBirth) � EmployeeRating � Wage � (NbHours, HourlyPrice) � Charge Kroenke, Database Processing Kroenke, Database Processing Functional Dependencies in the FD Facts MIDSHIPMAN Table � A functional dependency is a statement about all Assuming data is representative, determine the FD allowable instances of a table Alpha LastName FirstName Major Advisor � You cannot find the functional dependencies 111342 Thomas Sarah IEA Lewis simply by looking at some data: 112368 Smith John IFP Jones � Data set limitations 116644 Mikalson Michael IFA Skapanski � Must be logically a determinant 117862 Doe Jane IFA Skapanski 123116 Doe Bob IFP Lefferton � Given some data in a table R, we can check if it 120908 Johnson John IFP Jones violates some FD, but we cannot tell if the FD 121198 Thomas Thomas IEA Lewis holds over R! 129722 Jefferson Janet IFP Lefferton 129832 Thomas Sarah IFP Lefferton Kroenke, Database Processing Kroenke, Database Processing Functional Dependencies in the What Makes Determinant Values Unique? MIDSHIPMAN Table Alpha � � (LastName, FirstName, Major, � � � A determinant is unique in a relation if, and Advisor) only if, it determines every other column in the relation Advisor � � Major � � � Unique determinants = superkey Kroenke, Database Processing Kroenke, Database Processing 3

  4. Key Normal Forms � A set of columns is a key for a relation if : � Relations are categorized as a normal form 1. a) No two distinct rows can have same values in all based on which modification anomalies or other key columns problems that they are subject to: or equivalently b) determines all of the other columns in a relation 2. This is not true for any subset of the key � Candidate key = key � Primary key, Alternate key Kroenke, Database Processing Kroenke, Database Processing Number Last First Email Company Wing Name Name 190 Smith John jsmith@usna.edu 12 2 Eliminating Modification Anomalies from Normal Forms 673 Doe Jane jdoe@usna.edu 7 4 312 Doe Bob bred@usna.edu 6 6 Functional Dependencies in Relations 152 Johnson Matt mat@usna.edu 7 4 � 1NF – A table that qualifies as a relation is in 1NF � Put all relations into Boyce-Codd Normal Form (BCNF): � Boyce-Codd Normal Form (BCNF) – A relation is in BCNF if every determinant is a (candidate) key “I swear to construct my tables so that all nonkey columns are dependent on the key, the whole key and nothing but the key, so help me Codd.” Kroenke, Database Processing Kroenke, Database Processing Putting a Relation into BCNF: Putting a Relation into BCNF: ASSIGNMENT_GRADES ASSIGNMENT_GRADES ASSIGNMENT_GRADES (Alpha, Assignment, Points, Alpha Assignment Points PointsTotal PointsTotal) 129722 QUIZ1 10 10 129722 QUIZ2 2.5 10 (Alpha, Assignment) � � (Points, PointsTotal) � � 129722 QUIZ3 2 20 Assignment � � (PointsTotal) � � 122422 QUIZ1 6 10 122422 QUIZ2 7 10 122422 QUIZ3 18 20 129936 QUIZ1 6 10 ASSIGNMENT (Assignment, PointsTotal) 129936 QUIZ2 8 10 GRADES (Alpha, Assignment , Points) 129936 QUIZ3 20 20 Where GRADES.Assignment must exist in ASSIGNMENT.Assignment Kroenke, Database Processing Kroenke, Database Processing 4

  5. Putting a Relation into BCNF: Redundancy Example New Relations Alpha Assignment Points � PartKit �� Part, PartKit � Price 129722 QUIZ1 10 129722 QUIZ2 2.5 Assignment PointsTotal 129722 QUIZ3 2 QUIZ1 10 122422 QUIZ1 6 QUIZ2 10 122422 QUIZ2 7 QUIZ3 20 122422 QUIZ3 18 129936 QUIZ1 6 129936 QUIZ2 8 129936 QUIZ3 20 Kroenke, Database Processing Kroenke, Database Processing Eliminating Anomalies from Multivalued Dependencies Multivalued Dependencies � Multivalued dependencies are not a problem if they are in a separate relation, so: � Always put multivalued dependencies into their own relation � This is known as Fourth Normal Form (4NF) Kroenke, Database Processing Kroenke, Database Processing Normalize or Not? Class Exercise � R(A, B, C, D, E, F) Customer(CustID, Name, City, State, Zip) � A � (B,C,D,E,F) Assuming that city and state determine zip code, is Customers table in BCNF? B � C � If Customers table is not in BCNF, would (D,E) � F you or would you not normalize it to � Is A a key? Why? BCNF? Give one reason for the choice � Is R in BCNF? Why? you make � If R not in BCNF, decompose to BCNF Kroenke, Database Processing Kroenke, Database Processing 5

  6. Class Exercise Summary � Modification anomalies ID Name University MainCampus 1 John Smith Cornell Ithaca � Functional dependency 2 John Smith MIT Boston � X � Y (X determines Y) 3 Matt Johnson Ithaca College Ithaca 4 Chris Brown USNA Annapolis � Unique determinant � (candidate) key 5 Jane Doe Cornell Ithaca 6 Ric Crabbe USNA Annapolis � 1NF – A table that qualifies as a relation is in 1NF •Example of deletion anomaly? � Boyce-Codd Normal Form (BCNF) – A relation is •Do these FDs hold? Why? in BCNF if every determinant is a (candidate) key •ID � University � 4NF – Multivalued dependencies are in a relation •Name � ID •University � MainCampus by themselves •MainCampus � Name Kroenke, Database Processing Kroenke, Database Processing 6

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend