Presentation is loading. Please wait.

Presentation is loading. Please wait.

ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen1 ER-to-Relational Mapping Principles Specialization/Generalization -Superclass/Subclass Relationship.

Similar presentations


Presentation on theme: "ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen1 ER-to-Relational Mapping Principles Specialization/Generalization -Superclass/Subclass Relationship."— Presentation transcript:

1 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen1 ER-to-Relational Mapping Principles Specialization/Generalization -Superclass/Subclass Relationship Outline: ER-to-Relational Mapping Chapter 9 – 3rd ed. (Chap. 7 – 4 th, 5 th ed.; Chap. 9, 6 th ed.)

2 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen2 Sec. 9.1, Sec. 4.1 and 4.2. General process 1. Create a relation for each strong entity type 2. Create a relation for each weak entity type include primary key of owner (an FK - foreign key) owner’s PK + partial key becomes PK 3. For each binary 1:1 relationship choose an entity and include the other’s PK in it as an FK. Include any attributes of the relationship 4. For each binary 1:n relationship, choose the n-side entity and include an FK w.r.t the other entity. Include any attributes of the relationship

3 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen3 5. For each binary M:N relationship, create a relation for the relationship include PKs of both participating entities and any attributes of the relationship PK is the concatenation of the participating entity PKs 6. For each multivalued attribute create a new relation include the PK attributes of the entity type PK is the PK of the entity type and the multivalued attribute 7. For each n-ary relationship, create a relation for the relationship include PKs of all participating entities and any attributes of the relationship PK may be the concatenation of the participating entity PKs

4 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen4 1. Create a relation for each strong entity type include all simple attributes choose a primary key Suppose we have: course 1N offered in Section no term meeting course no name credit hours description section

5 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen5 We create a relation for Course - four attributes, course_no is the PK. course 1N offered in Section no term meeting course no name credit hours description section Course Course_nonamecredit_hoursdescription

6 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen6 2. Create a relation for each weak entity type include primary key of owner (an FK) Owner’s PK + partial key become the PK Suppose we have: course 1N offered in Section no term meeting course no name credit hours description section

7 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen7 We create a relation for Section course 1N offered in Section no term meeting course no name credit hours description section Section Course_noSection_noTerm PK is {course_no, section_no}. course_no is an FK. meeting is not a simple attribute, so it’s not included.

8 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen8 3. For each binary 1:1 relationship choose an entity and include the other’s PK in it as an FK. departmentinstructor chair 11 dept_no dname instr_noiname There are two choices here choose department, or choose instructor Which is the better choice?

9 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen9 Department is the better choice since it must participate in the relationship. departmentinstructor chair 11 dept_no dname instr_noiname Department chairdept_nodname If we choose department then instr_no is included as, of course, an FK. Note that instr_no must have a value.

10 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen10 4. For each binary 1:n relationship, choose the n-side entity and include an FK w.r.t the other entity. departmentinstructor employs 1N dept_no dname instr_noiname We must choose instructor We end up with: instructor instr_noinamedept_no PK is instr_no dept_no is an FK Note that Step 1 would lead to the instructor relation - we have now augmented instructor with the dept_no attribute.

11 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen11 5. For each binary M:N relationship, create a relation for the relationship include PKs of both participating entities and any attributes of the relationship PK is the catenation of the participating entities’ PKs studentcourse enroll mn grade Enroll student_noCourse_nograde PK is {student_no, course_no} student_no is a FK course_no is a FK grade is an attribute of Enroll course_no student_no

12 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen12 6. For each multi-valued attribute create a new relation include the PK attributes of the entity type PK is the PK of the entity type and the multi-valued attribute course 1N offered in Section no term meeting course no name credit hours description section Meeting is a multi-valued attribute

13 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen13 Create a relation for meeting Section was created because of Step 2 - its PK is {course_no, section_no} meeting Meeting course_nosection_nomeeting PK is {course_no, section_no, meeting}. Meeting is an all-key relation.

14 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen14 7. For each n-ary relationship, create a relation for the relationship include PKs of all participating entities and any attributes of the relationship PK may be the catenation of the participating entity PKs (depends on cardinalities) semestercourse offers mn room course_no semester_no instructor instr_no p

15 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen15 We need one relation, offers, with PK of {semester_no, course_no, instr_no} semestercourse offers mn room no course_no semester_no instructor instr_no p Offers course_noinstr_nosemester_noRoom_no

16 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen16 student graduate undergraduate Return to Entity-Relationship Modeling Consider Section 4.2 on Specialization and Generalization Specialization is the process of defining a set of sub-entities of some entity type. Generalization is the opposite approach/process of determining a supertype based on certain entities having common characteristics. e.g. employees may be paid by the hour or a salary (part vs full-time) e.g. students may be part-time or full-time; graduate or undergraduate these are similar to 1:1 relationships, but they always involve entities of one (super)type these are ‘is-a’ relationships d

17 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen17 student graduate undergraduate d The arc implies graduate and undergraduate are subtypes of student The bubble and the d imply disjoint subtypes (o - overlap subtypes) A student must be a graduate or undergraduate Participation of supertype may be mandatory or optional Participation of subtype is always mandatory Subtypes may be disjoint or overlapping a predicate (on an attribute) determines the subtype: e.g. attribute Student_class Student_class = ‘graduate’; Student_class = ‘undergraduate’ Student_class Subtype is determined by the student_class attribute

18 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen18 Mapping to a relational database - Section 9.2.1 (Step 8) 4 choices: 1. Create separate relations for the supertype and each of the subtypes. 2. Create relations for the subtypes only - each contains attributes from the supertype. 3. (disjoint subtypes) Create only one relation - includes all of the attributes for the supertype and all for the subtypes, and one discriminator attribute. 4. (overlapping subtypes) Create only one relation - includes all of the attributes for the supertype and all for the subtypes, and one logical discriminator attribute per subtype. PK is always the same - determined from the supertype

19 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen19 SECRETARYENGINEER d Example for super- & sub-types: choice 1 TECHNICIAN name lname minit fname Ssn bDates Address JobType TypingSpeed TGrade EngType fname, minit, lname, ssn, bdate, address, JobType EMPLOYEE Essn, TypingSpeed SECRETARY Essn, TGrade TECHNICIAN Essn, EngType ENGINEER EMPLOYEE

20 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen20 CARTRUCK d Example for super- & sub-types: choice 2 VehicleId PriceLicensePlate TNoOfPassengers NoOfAxles VehicleId, LicensePlate, Price, MaxSpeed, NoOfPassenger CAR VehicleId, LicensePlate, Price, NoOfAxles, Tonnage TRUCK MaxSpeed Tonnage Vehicle

21 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen21 SECRETARYENGINEER d Example for super- & sub-types: choice 3 TECHNICIAN name lname minit fname Ssn bDates Address JobType TypingSpeed TGrade EngType fname, minit, lname, ssn, bdate, address, JobType, TypingSpeed, Tgrade, EngType EMPLOYEE

22 ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen22 Part Manufacture_PartPurchased_Part o Example for super- & sub-types: choice 4 PartNo Description manufactureDate Supplier PartNo, Desription, MFlag, Drawing, ManufactureDate, BatchNo, Pflag, Supplier, ListPrice Part BatchNo DrawingNo ListPrice


Download ppt "ER-to-Relational Mapping Jan. 2012ACS-3902 Yangjun Chen1 ER-to-Relational Mapping Principles Specialization/Generalization -Superclass/Subclass Relationship."

Similar presentations


Ads by Google