forward engineering relational databases 53C0441E






Guideline: Forward-Engineering Relational Databases








var backPath = './../../../';
var imgPath = './../../../images/';
var nodeInfo=[{view: "view:_LVCagP5WEdmAzesbYywanQ", path: ["_LVCagP5WEdmAzesbYywanQ", "_zRigkAILEdq-_NKqZM1EhA", "_QV4x0AISEdqTna4sZVFRow", "_kjFBYN7HEdm8G6yT7-Wdqw", "{9DCF1723-1A21-4F48-BEDE-DBC543489682}", "5.250868507423771E-305"]}, {view: "view:_FCx1oN7CEdmsEI4YDGX2ag", path: ["_FCx1oN7CEdmsEI4YDGX2ag", "_Jvt1cAIaEdqEutyfYo0quQ", "_EOvXUN7HEdm8G6yT7-Wdqw", "_kjFBYN7HEdm8G6yT7-Wdqw", "{9DCF1723-1A21-4F48-BEDE-DBC543489682}", "5.250868507423771E-305"]}, {view: "view:_FCx1oN7CEdmsEI4YDGX2ag", path: ["_FCx1oN7CEdmsEI4YDGX2ag", "_Jvt1cAIaEdqEutyfYo0quQ", "_jijhYAIaEdqEutyfYo0quQ", "_mTMIkN7REdmjRZts2c4ZjQ", "{9DCF1723-1A21-4F48-BEDE-DBC543489682}", "5.250868507423771E-305"]}, {view: "view:_FCx1oN7CEdmsEI4YDGX2ag", path: ["_FCx1oN7CEdmsEI4YDGX2ag", "_jD8dUAIbEdqEutyfYo0quQ", "_2ClPcDIcEdqDs_9ORT1Rig", "5.250868507423771E-305"]}];
contentPage.preload(imgPath, backPath, nodeInfo, '', false, false, false);










Guideline: Forward-Engineering Relational Databases















This guideline describes methods for mapping persistent design classes in the Design Model into tables in the Data Model.






Relationships



Related Elements


Database Design


Data Model






Main Description



Introduction This guideline describes methods for mapping persistent design classes in the Design Model into tables in the Data Model.  Transforming Design Model Elements to Data Model Elements Persistent classes from the design model can be transformed to tables in the Data Model. The table below shows a summary of the mapping between Design Model elements and Data Model elements. Design Model Element Corresponding Data Model Element Class Table Attribute Column Association Non-Identifying Relationship Association Class Intersection Table Composite Aggregation Identifying Relationship Many-to-Many Association Intersection Table Multiplicity Cardinality Qualified Association Intersection Table Generalization (Inheritance) Separate Table Mapping Persistent Classes to Tables The persistent classes in the Design Model represent the information that the system must store. Conceptually, these classes might resemble a relational design. (For example, the classes in the Design Model might be reflected in some fashion as entities in the relational schema.) As a project moves from elaboration into construction, however, the goals of the Design Model and the Relational Data Model diverge. This divergence is caused because the objective of relational database development is to normalize data, whereas the goal of the Design Model is to encapsulate increasingly complex behavior. The divergence of these two perspectives-data and behavior-leads to the need for mapping between related elements in the two models. In a relational database written in third normal form, every row in the tables-every "tuple"-is regarded as an object. A column in a table is equivalent to a persistent attribute of a class. (Keep in mind that a persistent class might have transient attributes.) Therefore, in the simple case in which there are no associations to other classes, the mapping between the two worlds is simple. The datatype of the attribute corresponds to one of the allowable datatypes for columns. Example The following class Customer: when modeled in the RDBMS would translate to a table called Customer, with the columns Customer_ID, Name, and Address. An instance of this table can be visualized as: Persistent Attributes and Keys For each persistent attribute, questions must be asked to elicit additional information that will be used to appropriately model the persistent object in a relational Data Model. For example: Can this persistent attribute serve as a key or part of a key? Example: "Attribute X, together with attribute Z, uniquely identifies the object." In the Customer table, the Customer_ID represents a primary key. What are the minimum and maximum values for the attribute? Will it be possible to search using this attribute as a key? It might, for instance, be part of a filter in a Select statement such as "It is common to search for all instances where Y > 1000." Does the attribute have a description such as "attribute X is the number of retransmissions per 100 000 transmitted characters"? Does the attribute have possible numerical values and desired conversions between different numerical values? Who is allowed to update the attribute? Example: "T may only be changed by people in authority class nn." Who is allowed to read the attribute? Examples: "P may be read by people in authority classes yy and zz" or ""P is included in views Vi and Vj." Is there adequate information about volumes and frequencies? Examples: "There are up to 50 000 occurrences of A" or "On average 2000 As are changed per day." Is the attribute unique? Example: Only one person can have the same driver's license number. Mapping Associations Between Persistent Objects to the Data Model Associations between two persistent objects are realized as foreign keys to the associated objects. A foreign key is a column in one table that contains the primary key value of the associated object. Example: Assume there is the following association between Order and Customer: When this is mapped into relational tables, the result is an Order table and a Customer table. The Order table has columns for attributes listed, plus an additional column named Customer_ID that contains foreign-key references to the primary key of the associated row in the Customer table. For a given Order, the Customer_ID column contains the identifier of the Customer to whom the Order is associated. Foreign keys allow the RDBMS to join related information together. Mapping Aggregation Associations to the Data Model Aggregation is also modeled using foreign key relationships. Example: Assume that there is the following association between Order and Line Item: When this is mapped into relational tables, the result is an Order table and a Line_Item table. The Line_Item table has columns for attributes listed, plus an additional column called Order_ID that contains a foreign-key reference to the associated row in the Order table. For a given Line Item, the Order_ID column contains the Order_ID of the Order with which the Line Item is associated. Foreign keys allow the RDBMS to optimize join operations. In addition, it is important to implement a cascading delete constraint that provides referential integrity in the Data Model. Once this is accomplished, whenever the Order is deleted, all of their Line Items are deleted as well. Modeling Generalization Relationships in the Data Model The standard relational Data Model does not support modeling inheritance in a direct way. A number of strategies can be used to model inheritance. These can be summarized as follows: Use separate tables to represent the super-class and sub-class. The sub-class table must include a foreign key reference to the super-class table. In order to instantiate a sub-class object, the two tables must be joined together. This approach is conceptually easy and facilitates changes to the model, but it often performs poorly due to the extra work. Duplicate all inherited attributes and associations as separate columns in the sub-class table. This is similar to de-normalization in the standard relational Data Model. Modeling Many-to-Many Associations in the Data Model A standard technique in relational modeling is to use an intersection entity to represent many-to-many associations. The same approach can be applied here: An intersection table is used to represent the association. Example: If Suppliers can supply many Products, and a Product can be supplied by many Suppliers, the solution is to create a Supplier/Product table. This table would contain only the primary keys of the Supplier and Product tables, and serve to link the Suppliers and their related Products. The Object Model has no analog for this table; it is strictly used to represent the associations in the relational Data Model. Refining the Data Model Once the design classes have been transformed into tables and the appropriate relationships in the Data Model, the model is refined as needed to implement referential integrity and optimize data access through views and stored procedures. For more information, see Guideline: Data Model. Forward-Engineering the Data Model Most application design tools support the generation of Data Definition Language (DDL) scripts from Data Models and/or the generation of the database from the Data Model. Forward-engineering of the database needs to be planned as part of the overall application development and integration tasks. The timing and frequency for forward-engineering the database from the Data Model depends on the specific project situation. For new application development projects that are creating a new database, the initial forward-engineering might need to be done as part of the work to implement a stable architectural version of the application by the end of the elaboration phase. In other cases, the initial forward-engineering might be done in early iterations of the construction phase.  The types of model elements in the Data Model that can be forward-engineered vary, depending on the specific design tools and RDBMS used on the project.  In general, the major structural elements of the Data Model, including tables, views, stored procedures, triggers, and indexes can be forward-engineered into the database.





This content developed or partially developed by Applied Information Sciences. ©  Copyright IBM Corp. 1987, 2006.  All Rights Reserved.







contentPage.onload();




Wyszukiwarka

Podobne podstrony:
forward engineering?F5AD0B
reverse engineering relational?tabases?2803B8
rup process engineerQCC276E
engines
1 5 Engineering Analysis
Palmer relation between moral reasoning and agression, and implications for practice
Stirling Engines Diy(1)(1)
extend relationship?38D814
3 EngineElectronics (Part 1)
Design and performance optimization of GPU 3 Stirling engines
option relative urls
engine606 presscont
PR Internet Public Relations w zarządzaniu
IP FORWARD MIB
engine eye

więcej podobnych podstron