Database Design Flashcards
Entities, relationships, and attributes. Cardinality. Strong and weak entities. Supertype and Subtypes. Modeling Conventions.
Entity-Relationship Model
High-level representation of data requirements, ignoring implementation details
Entity
Person, place, product, concept or activity
Relationship
Statement about two entities
Attribute
Descriptive property of an entity
Reflexive relationship
Relates to an entity itself
entity-relationship diagram, ER Diagram
schematic picture of entities, relationships, and attributes
Glossary/Data Dictionary/Repository
Documents additional detail in text format
Entity Type
a set of things Ex: All employees in a company.
Relationship Type
Is a set of related things (Employee-Manages-Department is a set of (employee, department) pairs, where the employee manages the department
Attribute Type
Set of values Ex: All employee salaries
Entity Instance
individual thing Ex: The employee Sam Snead
Relationship Instance
Statement about an entity instance Ex: “Maria Rodriguez manages Sales”
Attribute Instance
An individual value Ex: The Salary $35,000
Analysis
Develops an entity-relationship model, capturing data requirements while ignoring implementation details
Logical Design
Converts the entity-relationship model into tables, columns, and keys for a particular database system.
Physical design
Adds indexes and specifies how tables are organized on storage media
Cardinality
Refers to the maxima and minima of relationships and attributes
Relationship Maximum
Greatest number of instances of one entity that can relate to a single instance of another entity
Singular/Plural
Single when the maximum is one and plural when the maximum is many
Relationship Minimum
Least number of instances of one entity that can relate to a single instance of another entity
Optional/REquired
Optional when the minimum is zero and required when the minimum is one.
Attribute Maximum
Greatest number of attribute values that can describe each entity instance. Attribute maximum is usually specified as one singular or many plural
Attribute Minimum
last number of attribute values that can describe each entity instance. Attribute minimum is usually specified as zero or one required.
Unique Attribute
Describes at most one entity instance
Identifying attribute
unique, singular, and required
Identify
Values correspond to one-to-one to, or identify, entity instances.
strong entity
Has one or more identifying atytributes
Weak Entity/Identifying Relationship/Identifying entity
Weak entity usually has a relationship, called an identifying relationship, to another entity, called an identifying entity. Cardinality of the ID entity is 1(1)
Subtype Entity/Supertype Entity
Subtype entity is a subset of another entity type, called the supertype entity
IsA Relationship
A Super type entity identifies its subtype entities. The identifying relationship is called an IsA relationship
Similar Entities
Entities that have many common attributes and relationships
Partition
Supertype entity is a group of mutually exclusive subtype entities
Partition Attribute
Corresponds to an optional partition attribute of the super type entity
Crow’s Foot Notation
Depicts cardinality as a Circle(zero), a short line (one) or three short lines(many)
Subject Area
Decompose a complex model into a group of related entities, called a subject area
Independent/Dependent
Refers to strong entities as independent and weak entities as dependent
Unified Modeling Language/UML
Commonly used for software development. Software data structures are similar to database scructures, so UML includes ER conventions
IDEF1X
Information DEFinition Version 1x
Chen Notation
Chen notation is not standardized but often appears in literature and tools
Strong Table
Strong Entity becomes a strong table. Primary key must be unique and non-NULL, and should be stable, simple, and meaningless. Single-column primary keys are best. but if no such columns exists, a composite primary key may have the required properties.
Artificial Key
Single-Column primary key created by the database designer when no suitable single-column or composite primary key exists
Subtype Table
Subtype entity becomes a subtype table
Weak Table
Weak entity becomes a weak table
Depends on
Column A depends on Column B means each B value is related to at most one A value
Functional Dependence
Dependence of one column on another
Multivalued dependence/Join Dependence
Entail dependencies between three or more columns
Redundancy
Reptition of related values in a table
Normal forms
Rules for designing tables with less redundancy
First normal form
Every cell of a table contains exactly one value. The table has a primary key as well.
Second Normal Form
When all non-key columns depend on the whole primary key
Third Normal Form
When all non-key columns depend on the key, the whole key, and nothing but the key.
Candidate Key/Minimal
Simple or composite column that is unique and minimal. Minimal means all columns are necessary for uniqueness
Nonkey
Column that is not contained in a candidate key
Third normal form
Whenever a non-key column A depends on column B, then B is unique. Columns A and B may be simple or composite
Boyce-Codd Normal Form
Whenever column A depends on Column b, then B is unique. Columns A and B may be simple or composite
Normalization
Eliminates redundancy by decomposing a table into two or mote tables in higher normal form.
Depends On
Column A depends on column when each b value is related to at most one A value. A and B may be simple or composite columns
Boyce-Codd Normal Form
If Column A depends on column B, then B must be unique
Denormalization
Intentionally introducing redundancy by merging tables
High-level representation of data requirements, ignoring implementation details
Entity-Relationship Model
Person, place, product, concept or activity
Entity
Statement about two entities
Relationship
Descriptive property of an entity
Attribute
Relates to an entity itself
Reflexive relationship
schematic picture of entities, relationships, and attributes
entity-relationship diagram, ER Diagram
Documents additional detail in text format
Glossary/Data Dictionary/Repository
a set of things Ex: All employees in a company.
Entity Type
Is a set of related things (Employee-Manages-Department is a set of (employee, department) pairs, where the employee manages the department
Relationship Type
Set of values Ex: All employee salaries
Attribute Type
individual thing Ex: The employee Sam Snead
Entity Instance
Statement about an entity instance Ex: “Maria Rodriguez manages Sales”
Relationship Instance
An individual value Ex: The Salary $35,000
Attribute Instance
Develops an entity-relationship model, capturing data requirements while ignoring implementation details
Analysis
Converts the entity-relationship model into tables, columns, and keys for a particular database system.
Logical Design
Adds indexes and specifies how tables are organized on storage media
Physical design
Refers to the maxima and minima of relationships and attributes
Cardinality
Greatest number of instances of one entity that can relate to a single instance of another entity
Relationship Maximum
Single when the maximum is one and plural when the maximum is many
Singular/Plural
Least number of instances of one entity that can relate to a single instance of another entity
Relationship Minimum
Optional when the minimum is zero and required when the minimum is one.
Optional/REquired
Greatest number of attribute values that can describe each entity instance. Attribute maximum is usually specified as one singular or many plural
Attribute Maximum
last number of attribute values that can describe each entity instance. Attribute minimum is usually specified as zero or one required.
Attribute Minimum
Describes at most one entity instance
Unique Attribute
unique, singular, and required
Identifying attribute
Values correspond to one-to-one to, or identify, entity instances.
Identify
Has one or more identifying atytributes
strong entity
Weak entity usually has a relationship, called an identifying relationship, to another entity, called an identifying entity. Cardinality of the ID entity is 1(1)
Weak Entity/Identifying Relationship/Identifying entity
Subtype entity is a subset of another entity type, called the supertype entity
Subtype Entity/Supertype Entity
A Super type entity identifies its subtype entities. The identifying relationship is called an IsA relationship
IsA Relationship
Entities that have many common attributes and relationships
Similar Entities
Supertype entity is a group of mutually exclusive subtype entities
Partition
Corresponds to an optional partition attribute of the super type entity
Partition Attribute
Depicts cardinality as a Circle(zero), a short line (one) or three short lines(many)
Crow’s Foot Notation
Decompose a complex model into a group of related entities, called a subject area
Subject Area
Refers to strong entities as independent and weak entities as dependent
Independent/Dependent
Commonly used for software development. Software data structures are similar to database scructures, so UML includes ER conventions
Unified Modeling Language/UML
Information DEFinition Version 1x
IDEF1X
Chen notation is not standardized but often appears in literature and tools
Chen Notation
Strong Entity becomes a strong table. Primary key must be unique and non-NULL, and should be stable, simple, and meaningless. Single-column primary keys are best. but if no such columns exists, a composite primary key may have the required properties.
Strong Table
Single-Column primary key created by the database designer when no suitable single-column or composite primary key exists
Artificial Key
Subtype entity becomes a subtype table
Subtype Table
Weak entity becomes a weak table
Weak Table
Column A depends on Column B means each B value is related to at most one A value
Depends on
Dependence of one column on another
Functional Dependence
Entail dependencies between three or more columns
Multivalued dependence/Join Dependence
Reptition of related values in a table
Redundancy
Rules for designing tables with less redundancy
Normal forms
Every cell of a table contains exactly one value. The table has a primary key as well.
First normal form
When all non-key columns depend on the whole primary key
Second Normal Form
When all non-key columns depend on the key, the whole key, and nothing but the key.
Third Normal Form
Simple or composite column that is unique and minimal. Minimal means all columns are necessary for uniqueness
Candidate Key/Minimal
Column that is not contained in a candidate key
Nonkey
Whenever a non-key column A depends on column B, then B is unique. Columns A and B may be simple or composite
Third normal form
Whenever column A depends on Column b, then B is unique. Columns A and B may be simple or composite
Boyce-Codd Normal Form
Eliminates redundancy by decomposing a table into two or mote tables in higher normal form.
Normalization
Column A depends on column when each b value is related to at most one A value. A and B may be simple or composite columns
Depends On
If Column A depends on column B, then B must be unique
Boyce-Codd Normal Form
Intentionally introducing redundancy by merging tables
Denormalization