What is ER Modeling?
Entity Relationship Modeling (ER Modeling) is a graphical approach to database design. It uses Entity/Relationship to represent real world objects.
An Entity is a thing or object in real world that is distinguishable from surrounding environment. For example each employee of an organization is a separate entity. Following are some of major characteristics of entities.
EER uses UML notation. UML is the acronym for Unified Modeling Language; it is a general purpose modeling language used when designing object oriented systems. Entities are represented as class diagrams. Relationships are represented as associations between entities. The diagram shown below illustrates an ER diagram using the UML notation.
Communication tools understood by all stakeholders(technical as well non-technical users) are critical in producing database systems that meet the requirements of the users. ER models are examples of such tools.
ER diagrams also increase user productivity as they can be easily translated into relational tables.
Case Study: ER diagram for "MyFlix" Video Library
Let's now work with the MyFlix Video Library database system to help understand the concept of ER diagrams. We will using this database for all hand-on in the remainder of this tutorials
MyFlix is a business entity that rents out movies to its members. MyFlix has been storing its records manually. The management now wants to move to a DBMS
Let's look at the steps to develop EER diagram for this database-
The following holds true regarding the interactions between the two entities.
Movies and categories entities
The following holds true about movies and categories.
Members and payments entities
The following holds true about members and payments
Now lets create EER model using MySQL Workbench
In the MySQL workbench , Click - "+" Button
Double click on Add Diagram button to open the workspace for ER diagrams.
Following window appears
Let's look at the two objects that we will work with.
1.Drag the table object from the tools panel
2.Drop it in the workspace area. An entity named table 1 appears
3.Double click on it. The properties window shown below appears
Next ,
Repeat above steps for other relationships. Your ER diagram should now look like this -
Download ER Model
An Entity is a thing or object in real world that is distinguishable from surrounding environment. For example each employee of an organization is a separate entity. Following are some of major characteristics of entities.
- An entity has a set of properties.
- Entity properties can have values.
- What is ER Modeling?
- Enhanced Entity Relationship (EER) Model
- Why use ER Model?
- Entities in the "MyFlix" library
- Defining the relationships among entities
Each attribute can have Values. In most cases single attribute have one value. But it is possible for attributes have multiple values also. For example Peter's age has a single value. But his "phone numbers" property can have multiple values.
Entities can have relationships with each other. Let's consider a simplest example. Assume that each Microsoft Programmer is given a Computer. It is clear that that Peter's Computer is also an entity. Peter is using that computer and the same computer is used by Peter. In other words there is a mutual relationship among Peter and his computer.
In Entity Relationship Modeling, we model entities, their attributes and relationships among entities.
Entities can have relationships with each other. Let's consider a simplest example. Assume that each Microsoft Programmer is given a Computer. It is clear that that Peter's Computer is also an entity. Peter is using that computer and the same computer is used by Peter. In other words there is a mutual relationship among Peter and his computer.
In Entity Relationship Modeling, we model entities, their attributes and relationships among entities.
Enhanced Entity Relationship (EER) Model
Enhanced Entity Relationship (EER) Model is a high level data model which provides extensions to original Entity Relationship (ER) model. EER Models supports more details design. EER Modeling emerged as a solution for modeling highly complex databases.EER uses UML notation. UML is the acronym for Unified Modeling Language; it is a general purpose modeling language used when designing object oriented systems. Entities are represented as class diagrams. Relationships are represented as associations between entities. The diagram shown below illustrates an ER diagram using the UML notation.
Why use ER Model?
Now you may think why use ER modeling when we can simply create the database and all of its objects without ER modeling? One of the challenges faced when designing database is the fact that designers, developers and end-users tend to view data and its usage differently. If this situation is left unchecked, we can end up producing a database system that does not meet the requirements of the users.Communication tools understood by all stakeholders(technical as well non-technical users) are critical in producing database systems that meet the requirements of the users. ER models are examples of such tools.
ER diagrams also increase user productivity as they can be easily translated into relational tables.
Case Study: ER diagram for "MyFlix" Video Library
Let's now work with the MyFlix Video Library database system to help understand the concept of ER diagrams. We will using this database for all hand-on in the remainder of this tutorials
MyFlix is a business entity that rents out movies to its members. MyFlix has been storing its records manually. The management now wants to move to a DBMS
Let's look at the steps to develop EER diagram for this database-
- Identify the entities and determine the relationships that exist among them.
- Each entity, attribute and relationship, should have appropriate names that can be easily understood by the non-technical people as well.
- Relationships should not be connected directly to eachother. Relationships should connect entities.
- Each attribute in a given entity should have a unique name.
Entities in the "MyFlix" library
The entities to be included in our ER diagram are;- Members - this entity will hold member information.
- Movies - this entity will hold information regarding movies
- Categories - this entity will hold information that places movies into different categories such as "Drama", "Action", and "Epic" etc.
- Movie Rentals - this entity will hold information that about movies rented out to members.
- Payments - this entity will hold information about the payments made by members.
Defining the relationships among entities
Members and moviesThe following holds true regarding the interactions between the two entities.
- A member can rent a more than movie in a given period.
- A movie can be rented by more than one member in a given period.
Movies and categories entities
The following holds true about movies and categories.
- A movie can only belong to one category but a category can have more than one movie.
Members and payments entities
The following holds true about members and payments
- A member can only have one account but can make a number of payments.
Now lets create EER model using MySQL Workbench
In the MySQL workbench , Click - "+" Button
Double click on Add Diagram button to open the workspace for ER diagrams.
Following window appears
Let's look at the two objects that we will work with.
- The table object allows us to create entities and define the attributes associated with the particular entity.
- The place relationship button allows us to define relationships between entities.
- Membership number
- Full names
- Gender
- Date of birth
- Physical address
- Postal address
1.Drag the table object from the tools panel
2.Drop it in the workspace area. An entity named table 1 appears
3.Double click on it. The properties window shown below appears
Next ,
- Change table 1 to Members
- Edit the default idtable1 to membership_number
- Click on the next line to add the next field
- Do the same for all the attributes identified in members' entity.
Your properties window should now look like this.
Repeat the above steps for all the identified entities.
Your diagram workspace should now look like the one shown below.
Lets create relationship between Members and Movie Rentals - Select the place relationship using existing columns too
- Click on membership_number in the Members table
- Click on reference_number in the MovieRentals table
Repeat above steps for other relationships. Your ER diagram should now look like this -
Summary
- ER Diagrams play a very important role in the database designing process. They serve as a non-technical communication tool for technical and non-technical people.
- Entities represent real world things; they can be conceptual as a sales order or physical such as a customer.
- All entities must be given unique names.
- ER models also allow the database designers to identify and define the relations that exist among entities.
Download ER Model
0 comments:
Post a Comment