ERD Flashcards
What is an Entity Relationship Diagram (ERD)?
An expressive and powerful tool that helps to capture the organization of data within a system into entities, and the realtions among them.
What is a graphical representation of Entities and their relationships?
Entity Relationship Diagram
What can anything that is a source of related data considered?
An entity
What type of process is drawing an ERD?
Iterative (a process for calculating a desired result by means of a repeated cycle of operations.)
How is an entity in an ERD represented?
An Entity name in uppercase inside a box
What do the name and box of an entity represent?
A complete class of simlitar entities.
For example, an entity called “employee” doesn’t represent a particular employee in the business, but represents all employees in the business.
What do entities ultimately become?
A file, inside each file will be a record for each employee the business has.
For an entity named Employee.
What is each “record” kept with in an entity called?
An entity instance.
What is an entity a collection of?
Entity Instances
What are the fields housed in entity instances called?
Entity attributes
What type of entity is defined more or less completely by the data that it holds?
A Strong Entity
Example: Employee, Student, Vehicle, Patient, Manager etc.
What is an entity that depends on other entities to be completely defined?
A weak entity
Examples: An entity like dependents that is reliant on an employee entity first.
What is an entity that describes relations?
An associative entity
What are fields of data that we gather from an entity?
An attribute
What does an attribute contain?
The actual pieces of data that are being stored in the database.
Examples are names, addressess, ages, quantities etc.
What is an attribute that unequivocally identifies an individual entity?
An Identifier attribute.
Examples: SSN for individuals, Student IDs for students etc.
How are identifier attributes indicated in an ERD?
By underlining their name
What are attributes that identify individual entity instances within a weak entity?
Partial Idenifier attributes
Examples: SSN of an employee’s dependent.
How are partial identifiers indicated in an ERD?
By double underlining their name
Which attribute is an attribute whose contents can be calculated or obtained by applying an algorithm to other fields in the database?
A Derived attribute.
How is a derived attribute indicated in an ERD?
By surrounding the name with [].
What is an attribute that only holds one independent value at a time?
Single value attribute.
Example: In the employee-dependent example: in each record for a dependent only one dependent is recorded.
How are single value attributes annotated in an ERD?
No special annotation.
What type of attribute can store various contents in one field?
A multivalued attribute.
Example: Instead of having seperate employee/dependent entities, the employee entity can have an attribute called dependents. Therefore, storing them in the same field.
What type of attribute can be incorporated into an ERD, but eliminated later in design?
Multivalued.
What does it mean to make fields in a database atomic?
That every field should contain the smallest piece of information that is appropriate for the system.
How are multivalued attributes indicated in an ERD?
By surrounding their names with {}.
What type of attribute is created when you break large attributes into smaller unbreakable ones?
Composite Attributes.
How do composite attributes work?
They contain data in it’s own right, but when combined with other attributes in an entity produce new attributes with more powerful meanings.
Example: An address can be broken up into, street number, street name, city, zip-code, country.
How are composite attributed indicated in an ERD?
By giving a name fo rthe composite attribute followed by the names of the individual attributes that make the composite up, all seperated by commas and surrounded by parentheses.
What is the purpose of an ERD?
To express the data itself and its relations.
Entity example and proper annotations for types
What is any interaction between entities that needs to be recorded as a source of data?
A relationship
Example: A physician entity examines a patient entity
How many ways can a relationship be expressed?
Each relationship has two sides and can be expressed in two different ways.
How are relationships represented in an ERD?
With a solid line that connects the entities participating in the relationship and the name of the relationship.
Example:
What are the individual relations between entity instanced called?
Relationship instance
What kind of relationship has a different line?
Dependency relationship, it use two lines instead of one
Example: A weak entity connected to a strong entity. Employee and dependent entities from earlier
What two attributes define every relationship?
Their degree and cardinality
What is the number of entities involved in a relationship called?
The degree of the relationship
What are the three types of relationships?
Unary, Binary, Ternary
What relationships involve one entity?
Unary
These are relations of an entity with itself
What relationship involves two entities?
Binary
The most common, just one entity connect to another entity
What relationship involves three entities
Ternary
These usually appear when there is an activity where three entities take an action that cannot be done if one of them is missing.
Example:
For example, a parcel delivery company may have parcels to deliver to certain clients. If the company wants to keep track of which delivery person delivered which packet to which client, three entities are involved: DeliveryPerson, Parcel, and Client. If we eliminate either of them from the relationship, the information about the delivery will not be complete.
What is the number of entity instances involved at each side of a relationship instance?
The cardinality of a relationship
Example: One-to-One, One-to-Many etc.
How are cardinalities indicated?
By two numbers, the minimum and maximum cardinality (m,M) for the minimum and maximum number of instances of an entity involved in a relationship.
Where are the numbers indicated an entities cardinality usually added?
On the side close to the netity they describe within the line representing the relationship.
Example: A pair like (1,1) indicates that one and only one instance of this entity instand shoudl be part of any relationship instance. (1,M) indicates one or more, and (0,1) or (0,M) indicate optional since there could be zero instances of the entity in the relationship.
Examples of cardinatily graphically
(1,1) can be replaced with two small lines
(0,1) can be replaced with a circle and a line next to it
(1,M) can be replaced with a small line and a crows foot
(0,M) can be replaced with a small circle and a crows foot
What are the two important categories of relationships?
One-to-One
One-to-Many
What is a one-to-one relationship?
One entity instance in one side of the relationship is related to only one entity instance in the other side of the relationship.
Example: A police officer is assigned a partner, each side only has one connection. Also a unary relationship
What is a one-to-many relationship?
There is one entity instance in one sid eof a relationship that holds the same type of relation with many entity instances in the other side of the relationship
Example: A teach is assigned a set of students. Each student only has one teacher, but the teacher has many students.
What is a many-to-many relationship?
Where more than one instance entity in one side of the relationship match some number of instance entities in the other side that is bigger than one.
What is an entity that is created when relationships themselve have attributes?
Associative entity
What does an associative entity contain?
All required attributes for the relationship, and each one of the other previous entities will replace their direct relation with each other for a direct relationship with the associative entity.
Associative entity example:
To avoid problems creating databases later, what should be eliminated if possible?
Many-to-Many relationships. They should be converted to one to many relationships using associative entities if possible.
Example attached: