SlideShare a Scribd company logo
A technical discussion of UML
Mapping Object to Data
Models with the UML
Table of Contents
SOFTWARE DEVELOPMENT FOR DATABASE APPLICATION ..............................................1
THE APPLICATION MODEL.............................................................................................................1
THE DATA MODEL .............................................................................................................................1
THE UML PROFILE FOR DATA MODELING............................................................................................1
MAPPING AND DEPENDENCIES BETWEEN APPLICATION AND DATA MODELS............1
COMPONENT TO DATABASE ..................................................................................................................1
PACKAGE TO SCHEMA ...........................................................................................................................2
CLASSES TO TABLES..............................................................................................................................2
ATTRIBUTES TO COLUMNS ....................................................................................................................3
ASSOCIATIONS TO RELATIONSHIPS........................................................................................................4
SUMMARY...........................................................................................................................................10
Mapping Object to Data Models with the UML
1
Software Development for Database Application
The development of a database application involves a close working relationship between the software
developers and the database development team. The most successful projects are marked by a shared
vision and clear communication of project details. Software developers deal with object oriented software
development and use the logical class model to represent the main view at the application, while the
Database team designs, models, builds and optimizes the database. The areas of interface and overlap
between these two distinct responsibilities often represent the most challenging aspect of database
application development. This white paper discusses how the UML and the UML Profile for Data
Modeling can help resolve this challenge.
The Application Model
The application model uses the class view of the application. Classes tagged as persistent describe the
logical data model.
The application model describes the application layer dealing with the database. It contains classes used as
the layer interface to the application and persistent classes used as the interface to the database.
The Data Model
The data model describes the physical implementation of the database. This is the model of the internal
database structure.
Persistent classes from the application model map to the data model.
The UML Profile for Data Modeling
The UML profile for Data Modeling contains modeling constructs necessary to accurately model a
database. These constructs are used to specify detailed information about the database and database
modeling. See the Rational White Paper, “The UML profile for Data Modeling” for more details.
Mapping and dependencies between Application and Data Models
The physical data model must map to the database. This is a simple one to one mapping, which is used to
forward or reverse engineer the database structures.
The mapping between the application model and the database model is more complex. As the data model
can change because of normalization or de-normalization, the application model can change as well.
Therefore, this mapping must be able to describe any and every possible relationship between the
application model and the data model.
Component to Database
The database itself is the physical layer of data storage. It has no mapping into the application model.
Instead, the application has interfaces to the database.
The database is associated to the application. The type of the association is a dependency.
Mapping Object to Data Models with the UML
2
The dependency between database and component is part of a software design and must be modeled
manually.
Package to Schema
The persistent view of the application is most commonly modeled in a persistent layer, represented by a
package.
This package maps to a Schema. The mapping is used for forward and reverse engineering. The mapping,
which can be used on a class diagram, is a dependency.
The dependency between package and schema is part of a software design and must be modeled manually.
Classes to Tables
Persistent classes can be mapped to tables. The default mapping is a 1:1 mapping although classes using
associations will be in some cases mapped to more than one table. See the “Association to Relationships”
section below for details on the mapping of classes associated to another classes.
When a class is mapped to a table all of the necessary transformations will be done. See the “Attributes to
Columns” section below.
The Item Class, below, is an example of a persistent table, which will be mapped to a database.
Mapping Object to Data Models with the UML
3
The corresponding table is the Item table.
The mapping assigns the table to the class although, as will be seen later, the mapping is additionally
provided on the detailed level of a column.
The mapping does not require the special design of a class or a table. The forward and reverse engineering
itself provides the ability to generate primary keys and primary key constraints.
Attributes to Columns
Attributes of persistent classes map to columns of a table. Mapping of attributes must consider the datatype
conversion between application datatype and database datatype. Although SQL-92 defines standard
datatypes for the database, most vendors implement additional datatypes or change the name of standard
datatypes.
The Item class also provides an example of the attribute to column conversion.
The data types used are Long for the id, String for the description and double for the price. In the case of an
Oracle 8.x database this mapping is done as follows.
Mapping Object to Data Models with the UML
4
The Long is mapped to NUMBER(10)1
, the String to VARCHAR2, and the Double to NUMBER(20).
See the Rational Rose Data Modeler Online Help for a complete list of mapping for every database.
Associations to Relationships
In a persistent data class model any of the provided association types can be used. To make it even more
complex, all of the possible cardinalities of the class roles in the association must be supported.
It is difficult to use relationships in a data model, because the relational data model understands only
identifying and non-identifying relationships and the1:N cardinality. The 1:1 cardinality must be forced
through constraints.
Following are some examples of the mapping between the persistent class model and the relational data
model.
1:1 association maps to a non-identifying relationship
In the object-oriented design often a 1:1 association represents the relationship between two independent
objects (in the example, Item and Picture). Each Item has to have a Picture, whereas the Picture has to be
assigned to the Item. The association is unidirectional.
The mapping to a data model uses two tables and a non-identifying relationship.
1
The length is specified in the detail specification of the column.
Mapping Object to Data Models with the UML
5
The foreign key of the table ItemPicture (item_id) uses the primary key of the Item table to build the
relationship. The foreign key constraint must be generated.
Because of the basic functionality of the relational data model the relationship is always bi-directional.
1:N association maps to a non-identifying relationship
The 1:N association is used as the association between the Item and the OrderedItem in this example. Every
instance of an ordered item has to have an association to exact one instance of the Item – only existing
Items can be ordered.
An instance of an Item may or may not be associated with every OrderedItem – not every Item must be
ordered.
A non-identifying relationship is used to specify the relationship between the tables.
A foreign key on the column item_id is generated to build the relationship. As with every foreign key a
foreign key constraint is also generated.
M:N association maps to 3 tables
The object-oriented design allows m to n (many-to-many) associations between classes. Many Employees
in the example care about one Customer. One Employee cares about many Customers.
Mapping Object to Data Models with the UML
6
As the relational data model does not allow m to n relationships, an additional table, called an associate
table, must be created. The associatetable splits the m to n relationship into two 1 to n relationships, using
identifying relationships.
The primary keys of both basic tables are used as primary and foreign keys in the relationship table. The
corresponding primary and foreign key constraints are generated.
Indexes can be built to improve the performance of database access.
Aggregation by reference maps to a non-identifying relationship
An optional aggregation by reference, as in the case of the BillingAddress, maps to a non-identifying
relationship. An Address can be the billing address of a CorporateCustomer.
Mapping Object to Data Models with the UML
7
The data model uses a non-identifying relationship to represent this type of relation.
The CorporateBillingAddress is used as a foreign key for the CorporateCustomer table and may be null.
The foreign key constraint must be generated.
Aggregation by value (composite aggregation) maps to an identifying relationship
A non-optional aggregation (by value) is used in this example to represent the Address as a part of the
Customer, resulting in two separate objects which act as one.
The corresponding representation in the data model is the identifying relationship.
Mapping Object to Data Models with the UML
8
The primary key of the Customer table migrates to the Address as foreign and primary key. A composite
primary constraint and a foreign key constraint are built for the address table based on the relationship.
Generalization maps to identifying relationship
Generalization specifies “a kind of” relation between two tables. CorporateCustomer is a kind of Customer.
The corresponding data model specifies two tables and an identifying relationship.
The primary key of the base table migrates to the child table as a primary and foreign key. The primary and
foreign key constraints are specified.
One class can map to several tables
In the process of normalization the data model is often split into more tables to reduce data redundancy.
The Address table, for example, is quite redundant because of the zip code definition.
The data analyst will in most cases split one table into two – the Address table and the Zip_codes table.
Mapping Object to Data Models with the UML
9
A non-identifying relationship is used to specify the relationship between the tables. The primary key of the
outsourced table is used as foreign keys in the Address table.
The foreign key constraints must be generated.
Multiple classes can map to one table
Because of performance and data accessibility the data model is often de-normalized. This results in the
mapping from multiple classes to one table.
In the example the PrivateCustomer just adds some attributes to the Customer. The attributes are never used
with other types of customers, but the data analyst could decide to make the columns within the
PrivateCustomer nullable.
As a result just one table of Customer is used in the data model. This table can be further refined for other
types of customers, but it already contains all of the columns of the PrivateCustomer. A data modeler may
add additional columns as well. For example, to map the PrivateCustomer, a column called cust_type could
be created.
In most cases, merging tables requires additional checks at the application logic to qualify data, or the
definition of additional views on a table for different accessibility.
Mapping Object to Data Models with the UML
10
In most cases, he data analyst makes decisions about merging tables based on optimizing the database for
data access.
Summary
Mapping object to data models is not easy. The object-relational mapping must be updated continuously as
the requirements, object and data model change.
There are several levels of mapping – from the database, schema, up to table and column. The examples in
this white paper are not complete. There are additional types of associations and additional mapping
examples.
Tracking of object-relational mapping is the key to success when building database applications.
IBM software integrated solutions
IBM Rational supports a wealth of other offerings from IBM software. IBM
software solutions can give you the power to achieve your priority business
and IT goals.
• DB2®
software helps you leverage information with solutions for data
enablement, data management, and data distribution.
• Lotus®
software helps your staff be productive with solutions for
authoring, managing, communicating, and sharing knowledge.
• Tivoli®
software helps you manage the technology that runs your e-
business infrastructure.
• WebSphere®
software helps you extend your existing business-critical
processes to the Web.
• Rational®
software helps you improve your software development
capability with tools, services, and best practices.
Rational software from IBM
Rational software from IBM helps organizations create business value by
improving their software development capability. The Rational software
development platform integrates software engineering best practices, tools,
and services. With it, organizations thrive in an on demand world by being
more responsive, resilient, and focused. Rational's standards-based, cross-
platform solution helps software development teams create and extend
business applications, embedded systems and software products. Ninety-
eight of the Fortune 100 rely on Rational tools to build better software,
faster. Additional information is available at www.rational.com and
www.therationaledge.com, the monthly e-zine for the Rational community.
Rational is a wholly owned subsidiary of
IBM Corp. (c) Copyright Rational
Software Corporation, 2003. All rights
reserved.
IBM Corporation
Software Group
Route 100
Somers, NY 10589
U.S.A.
Printed in the United States of America
01-03 All Rights Reserved.
Made in the U.S.A.
IBM the IBM logo, DB2, Lotus, Tivoli
and WebSphere are trademarks of
International Business Machines
Corporation in the United States, other
countries, or both.
Rational, and the Rational Logo are
trademarks or registered trademarks of
Rational Software Corporation in the
United States, other countries or both.
Microsoft and Windows NT are
registered trademarks of Microsoft
Corporationin the United States, other
countries, or both.
Java and all Java-based trademarks are
trademarks of Sun Microsystems, Inc. in
the United States, other countries, or
both.
ActionMedia, LANDesk, MMX, Pentium
and ProShare are trademarks of Intel
Corporation in the United States, other
countries, or both.
UNIX is a trademark of The Open Group
in the United States, other countries or
both.
Other company, product or service
names may be trademarks or service
marks of others.
The IBM home page on the Internet can
be found at ibm.com

More Related Content

PDF
Schema Integration, View Integration and Database Integration, ER Model & Dia...
PPT
RDBMS_Unit 01
PPTX
DBMS - ER Model
PDF
Database aggregation using metadata
PPT
E-R vs Starschema
PPT
Exp2003 exl ppt_03
PPTX
Logical database design and the relational model(database)
DOCX
Schema Integration, View Integration and Database Integration, ER Model & Dia...
RDBMS_Unit 01
DBMS - ER Model
Database aggregation using metadata
E-R vs Starschema
Exp2003 exl ppt_03
Logical database design and the relational model(database)

What's hot (20)

PPT
Exp2003 exl ppt_01
PPTX
Data model
PPT
Exp2003 exl ppt_02-continued
PPTX
EMPOWERMENT TECHNOLOGIES - LESSON 4
PDF
Summary data modelling
PPTX
Fact table design for data ware house
PPTX
Chapter 7 relation database language
DOCX
The three level of data modeling
PDF
Chapter 3 Entity Relationship Model
PPT
Database Relationships
PPT
Mapping inheritance structures_mapping_class
PPT
Tableau interview questions-ppt
PDF
A018110108
PDF
Tableau interview questions and answers
DOC
Mdx Basics
PPTX
20100810
PPT
data modeling and models
PPT
Ch 6 Logical D B Design
PPTX
PPT
Ch 12 O O D B Dvlpt
Exp2003 exl ppt_01
Data model
Exp2003 exl ppt_02-continued
EMPOWERMENT TECHNOLOGIES - LESSON 4
Summary data modelling
Fact table design for data ware house
Chapter 7 relation database language
The three level of data modeling
Chapter 3 Entity Relationship Model
Database Relationships
Mapping inheritance structures_mapping_class
Tableau interview questions-ppt
A018110108
Tableau interview questions and answers
Mdx Basics
20100810
data modeling and models
Ch 6 Logical D B Design
Ch 12 O O D B Dvlpt
Ad

Viewers also liked (18)

PDF
Analisis matematico i (isi plan 2008)
PPTX
Abrozakumi 9 a
PPTX
Aryo 9e internet
PPTX
Favorite Sports Players
PPTX
Aryo 9e internet
PPTX
PPTX
Making connections through social md draft5
PPTX
Sejarah Internet
DOCX
Subject pronouns têm a função de sujeito na oração
PPTX
Abrozakumi 9 a
PPTX
межгрупповые отношения
PPTX
дети и потребительское
PPTX
Chelsea fc
PPTX
Abrozakumi 9 a
PDF
Finales analisis matematico
PPTX
Психосексуальное развитие ребенка
PDF
dsp Lesson1
PPTX
Merchandising Book
Analisis matematico i (isi plan 2008)
Abrozakumi 9 a
Aryo 9e internet
Favorite Sports Players
Aryo 9e internet
Making connections through social md draft5
Sejarah Internet
Subject pronouns têm a função de sujeito na oração
Abrozakumi 9 a
межгрупповые отношения
дети и потребительское
Chelsea fc
Abrozakumi 9 a
Finales analisis matematico
Психосексуальное развитие ребенка
dsp Lesson1
Merchandising Book
Ad

Similar to Mapping object to_data_models_with_the_uml (20)

PDF
chapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdf
PPTX
Relational Model in DBMS detail explanation
DOCX
Data Modeling.docx
PPT
software_engg-chap-03.ppt
DOCX
Data modeling levels and techniques.docx
DOCX
Data modeling levels and techniques.docx
DOCX
Data modeling levels and techniques.docx
PDF
Object oriented analysis and design unit- iv
DOCX
Student POST  Database processing models showcase the logical s.docx
PPTX
Data model
PDF
Before you take a gander at particular images, its vital to compre.pdf
DOCX
Data models
DOCX
Data models
PPTX
PDF
1.1 Data Modelling - Part I (Understand Data Model).pdf
PDF
Mapping objects to_relational_databases
PDF
Topics In Data Science With Practical Examples Abdolreza Abhari
PPT
Lecture 16 requirements modeling - scenario, information and analysis classes
PPTX
Class 15_Introduction to Relational Algebra and Relational Calculus_19.11.202...
PDF
Informatica Data Modelling : Importance of Conceptual Models
chapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdf
Relational Model in DBMS detail explanation
Data Modeling.docx
software_engg-chap-03.ppt
Data modeling levels and techniques.docx
Data modeling levels and techniques.docx
Data modeling levels and techniques.docx
Object oriented analysis and design unit- iv
Student POST  Database processing models showcase the logical s.docx
Data model
Before you take a gander at particular images, its vital to compre.pdf
Data models
Data models
1.1 Data Modelling - Part I (Understand Data Model).pdf
Mapping objects to_relational_databases
Topics In Data Science With Practical Examples Abdolreza Abhari
Lecture 16 requirements modeling - scenario, information and analysis classes
Class 15_Introduction to Relational Algebra and Relational Calculus_19.11.202...
Informatica Data Modelling : Importance of Conceptual Models

More from Ivan Paredes (8)

PDF
Calendario2013 utn ffro
PDF
Plan2008 utn frro
PDF
Proyectiles
PDF
Analitico entornos graficos
TXT
Nuevo documento de texto (2)
PDF
Parcial analisis matematico
DOC
Ejercicios varios analisis matematico
PDF
Proyectiles
Calendario2013 utn ffro
Plan2008 utn frro
Proyectiles
Analitico entornos graficos
Nuevo documento de texto (2)
Parcial analisis matematico
Ejercicios varios analisis matematico
Proyectiles

Recently uploaded (20)

PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
Cell Types and Its function , kingdom of life
PDF
Basic Mud Logging Guide for educational purpose
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
Classroom Observation Tools for Teachers
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
Institutional Correction lecture only . . .
PDF
Pre independence Education in Inndia.pdf
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Cell Types and Its function , kingdom of life
Basic Mud Logging Guide for educational purpose
Renaissance Architecture: A Journey from Faith to Humanism
Classroom Observation Tools for Teachers
Module 4: Burden of Disease Tutorial Slides S2 2025
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
Anesthesia in Laparoscopic Surgery in India
Institutional Correction lecture only . . .
Pre independence Education in Inndia.pdf
01-Introduction-to-Information-Management.pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
O7-L3 Supply Chain Operations - ICLT Program
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
102 student loan defaulters named and shamed – Is someone you know on the list?
VCE English Exam - Section C Student Revision Booklet
Microbial disease of the cardiovascular and lymphatic systems
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Final Presentation General Medicine 03-08-2024.pptx
school management -TNTEU- B.Ed., Semester II Unit 1.pptx

Mapping object to_data_models_with_the_uml

  • 1. A technical discussion of UML Mapping Object to Data Models with the UML
  • 2. Table of Contents SOFTWARE DEVELOPMENT FOR DATABASE APPLICATION ..............................................1 THE APPLICATION MODEL.............................................................................................................1 THE DATA MODEL .............................................................................................................................1 THE UML PROFILE FOR DATA MODELING............................................................................................1 MAPPING AND DEPENDENCIES BETWEEN APPLICATION AND DATA MODELS............1 COMPONENT TO DATABASE ..................................................................................................................1 PACKAGE TO SCHEMA ...........................................................................................................................2 CLASSES TO TABLES..............................................................................................................................2 ATTRIBUTES TO COLUMNS ....................................................................................................................3 ASSOCIATIONS TO RELATIONSHIPS........................................................................................................4 SUMMARY...........................................................................................................................................10
  • 3. Mapping Object to Data Models with the UML 1 Software Development for Database Application The development of a database application involves a close working relationship between the software developers and the database development team. The most successful projects are marked by a shared vision and clear communication of project details. Software developers deal with object oriented software development and use the logical class model to represent the main view at the application, while the Database team designs, models, builds and optimizes the database. The areas of interface and overlap between these two distinct responsibilities often represent the most challenging aspect of database application development. This white paper discusses how the UML and the UML Profile for Data Modeling can help resolve this challenge. The Application Model The application model uses the class view of the application. Classes tagged as persistent describe the logical data model. The application model describes the application layer dealing with the database. It contains classes used as the layer interface to the application and persistent classes used as the interface to the database. The Data Model The data model describes the physical implementation of the database. This is the model of the internal database structure. Persistent classes from the application model map to the data model. The UML Profile for Data Modeling The UML profile for Data Modeling contains modeling constructs necessary to accurately model a database. These constructs are used to specify detailed information about the database and database modeling. See the Rational White Paper, “The UML profile for Data Modeling” for more details. Mapping and dependencies between Application and Data Models The physical data model must map to the database. This is a simple one to one mapping, which is used to forward or reverse engineer the database structures. The mapping between the application model and the database model is more complex. As the data model can change because of normalization or de-normalization, the application model can change as well. Therefore, this mapping must be able to describe any and every possible relationship between the application model and the data model. Component to Database The database itself is the physical layer of data storage. It has no mapping into the application model. Instead, the application has interfaces to the database. The database is associated to the application. The type of the association is a dependency.
  • 4. Mapping Object to Data Models with the UML 2 The dependency between database and component is part of a software design and must be modeled manually. Package to Schema The persistent view of the application is most commonly modeled in a persistent layer, represented by a package. This package maps to a Schema. The mapping is used for forward and reverse engineering. The mapping, which can be used on a class diagram, is a dependency. The dependency between package and schema is part of a software design and must be modeled manually. Classes to Tables Persistent classes can be mapped to tables. The default mapping is a 1:1 mapping although classes using associations will be in some cases mapped to more than one table. See the “Association to Relationships” section below for details on the mapping of classes associated to another classes. When a class is mapped to a table all of the necessary transformations will be done. See the “Attributes to Columns” section below. The Item Class, below, is an example of a persistent table, which will be mapped to a database.
  • 5. Mapping Object to Data Models with the UML 3 The corresponding table is the Item table. The mapping assigns the table to the class although, as will be seen later, the mapping is additionally provided on the detailed level of a column. The mapping does not require the special design of a class or a table. The forward and reverse engineering itself provides the ability to generate primary keys and primary key constraints. Attributes to Columns Attributes of persistent classes map to columns of a table. Mapping of attributes must consider the datatype conversion between application datatype and database datatype. Although SQL-92 defines standard datatypes for the database, most vendors implement additional datatypes or change the name of standard datatypes. The Item class also provides an example of the attribute to column conversion. The data types used are Long for the id, String for the description and double for the price. In the case of an Oracle 8.x database this mapping is done as follows.
  • 6. Mapping Object to Data Models with the UML 4 The Long is mapped to NUMBER(10)1 , the String to VARCHAR2, and the Double to NUMBER(20). See the Rational Rose Data Modeler Online Help for a complete list of mapping for every database. Associations to Relationships In a persistent data class model any of the provided association types can be used. To make it even more complex, all of the possible cardinalities of the class roles in the association must be supported. It is difficult to use relationships in a data model, because the relational data model understands only identifying and non-identifying relationships and the1:N cardinality. The 1:1 cardinality must be forced through constraints. Following are some examples of the mapping between the persistent class model and the relational data model. 1:1 association maps to a non-identifying relationship In the object-oriented design often a 1:1 association represents the relationship between two independent objects (in the example, Item and Picture). Each Item has to have a Picture, whereas the Picture has to be assigned to the Item. The association is unidirectional. The mapping to a data model uses two tables and a non-identifying relationship. 1 The length is specified in the detail specification of the column.
  • 7. Mapping Object to Data Models with the UML 5 The foreign key of the table ItemPicture (item_id) uses the primary key of the Item table to build the relationship. The foreign key constraint must be generated. Because of the basic functionality of the relational data model the relationship is always bi-directional. 1:N association maps to a non-identifying relationship The 1:N association is used as the association between the Item and the OrderedItem in this example. Every instance of an ordered item has to have an association to exact one instance of the Item – only existing Items can be ordered. An instance of an Item may or may not be associated with every OrderedItem – not every Item must be ordered. A non-identifying relationship is used to specify the relationship between the tables. A foreign key on the column item_id is generated to build the relationship. As with every foreign key a foreign key constraint is also generated. M:N association maps to 3 tables The object-oriented design allows m to n (many-to-many) associations between classes. Many Employees in the example care about one Customer. One Employee cares about many Customers.
  • 8. Mapping Object to Data Models with the UML 6 As the relational data model does not allow m to n relationships, an additional table, called an associate table, must be created. The associatetable splits the m to n relationship into two 1 to n relationships, using identifying relationships. The primary keys of both basic tables are used as primary and foreign keys in the relationship table. The corresponding primary and foreign key constraints are generated. Indexes can be built to improve the performance of database access. Aggregation by reference maps to a non-identifying relationship An optional aggregation by reference, as in the case of the BillingAddress, maps to a non-identifying relationship. An Address can be the billing address of a CorporateCustomer.
  • 9. Mapping Object to Data Models with the UML 7 The data model uses a non-identifying relationship to represent this type of relation. The CorporateBillingAddress is used as a foreign key for the CorporateCustomer table and may be null. The foreign key constraint must be generated. Aggregation by value (composite aggregation) maps to an identifying relationship A non-optional aggregation (by value) is used in this example to represent the Address as a part of the Customer, resulting in two separate objects which act as one. The corresponding representation in the data model is the identifying relationship.
  • 10. Mapping Object to Data Models with the UML 8 The primary key of the Customer table migrates to the Address as foreign and primary key. A composite primary constraint and a foreign key constraint are built for the address table based on the relationship. Generalization maps to identifying relationship Generalization specifies “a kind of” relation between two tables. CorporateCustomer is a kind of Customer. The corresponding data model specifies two tables and an identifying relationship. The primary key of the base table migrates to the child table as a primary and foreign key. The primary and foreign key constraints are specified. One class can map to several tables In the process of normalization the data model is often split into more tables to reduce data redundancy. The Address table, for example, is quite redundant because of the zip code definition. The data analyst will in most cases split one table into two – the Address table and the Zip_codes table.
  • 11. Mapping Object to Data Models with the UML 9 A non-identifying relationship is used to specify the relationship between the tables. The primary key of the outsourced table is used as foreign keys in the Address table. The foreign key constraints must be generated. Multiple classes can map to one table Because of performance and data accessibility the data model is often de-normalized. This results in the mapping from multiple classes to one table. In the example the PrivateCustomer just adds some attributes to the Customer. The attributes are never used with other types of customers, but the data analyst could decide to make the columns within the PrivateCustomer nullable. As a result just one table of Customer is used in the data model. This table can be further refined for other types of customers, but it already contains all of the columns of the PrivateCustomer. A data modeler may add additional columns as well. For example, to map the PrivateCustomer, a column called cust_type could be created. In most cases, merging tables requires additional checks at the application logic to qualify data, or the definition of additional views on a table for different accessibility.
  • 12. Mapping Object to Data Models with the UML 10 In most cases, he data analyst makes decisions about merging tables based on optimizing the database for data access. Summary Mapping object to data models is not easy. The object-relational mapping must be updated continuously as the requirements, object and data model change. There are several levels of mapping – from the database, schema, up to table and column. The examples in this white paper are not complete. There are additional types of associations and additional mapping examples. Tracking of object-relational mapping is the key to success when building database applications.
  • 13. IBM software integrated solutions IBM Rational supports a wealth of other offerings from IBM software. IBM software solutions can give you the power to achieve your priority business and IT goals. • DB2® software helps you leverage information with solutions for data enablement, data management, and data distribution. • Lotus® software helps your staff be productive with solutions for authoring, managing, communicating, and sharing knowledge. • Tivoli® software helps you manage the technology that runs your e- business infrastructure. • WebSphere® software helps you extend your existing business-critical processes to the Web. • Rational® software helps you improve your software development capability with tools, services, and best practices. Rational software from IBM Rational software from IBM helps organizations create business value by improving their software development capability. The Rational software development platform integrates software engineering best practices, tools, and services. With it, organizations thrive in an on demand world by being more responsive, resilient, and focused. Rational's standards-based, cross- platform solution helps software development teams create and extend business applications, embedded systems and software products. Ninety- eight of the Fortune 100 rely on Rational tools to build better software, faster. Additional information is available at www.rational.com and www.therationaledge.com, the monthly e-zine for the Rational community. Rational is a wholly owned subsidiary of IBM Corp. (c) Copyright Rational Software Corporation, 2003. All rights reserved. IBM Corporation Software Group Route 100 Somers, NY 10589 U.S.A. Printed in the United States of America 01-03 All Rights Reserved. Made in the U.S.A. IBM the IBM logo, DB2, Lotus, Tivoli and WebSphere are trademarks of International Business Machines Corporation in the United States, other countries, or both. Rational, and the Rational Logo are trademarks or registered trademarks of Rational Software Corporation in the United States, other countries or both. Microsoft and Windows NT are registered trademarks of Microsoft Corporationin the United States, other countries, or both. Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. ActionMedia, LANDesk, MMX, Pentium and ProShare are trademarks of Intel Corporation in the United States, other countries, or both. UNIX is a trademark of The Open Group in the United States, other countries or both. Other company, product or service names may be trademarks or service marks of others. The IBM home page on the Internet can be found at ibm.com