ch4 Flashcards
logical database design and the relational model
relation
named 2D table of data. consists of the named columns(attributes)
primary key
unique ID for a row. underline it. AKA identifier
composite key
primary key that is composite
foreign key
primary key of one table stored in another table to establish relationship. dashed underline.
schema
overall logical structure of the database
difference between table and relation
relations pretty much cannot have repeats
integrity constraints
rules to make sure data is accurate and good
domain
set of values that may be assigned to attribute
entity integrity rule
make sure primary key is valid and unique, not null
null
absence of a value
referential integrity constraint
check if foreign keys are good
well-structured relation
minimal redundancy, allows modification and deletion with minimal headaches
anomaly
inconstancy that happens when you try to update a table with redundant data. three types: insertion, deletion, and modification anomalies
transforming EER into relations steps
1-map regular entities 2-map weak entities 3-map binary relationships 4-map associative entities 5-map unary relationships 6-map ternary (and n-ary) relationships 7-map supetype/subtype relationships
descriptors
non key attributes
surrogate primary key
different way of identifying weak entity, just generate a unique serial number. good way to simplify key structure.
identifying relationship
in weak entities, owner relation
partial identifier
unique part of weak entity. NOT primary key, primary key will be composite of owner and the partial id
natural key
as oppossed to surrogate key, has meaning to organization P170
recursive foreign key
foreign key in a relation references primary key of same relations. unary primary/foreign
normalization
decompose relations with anomalies to produce smaller more well structured ones
normalization main goal
decide which attributes should be grouped together to AVOID ANOMALIES
normal form
attributes have to follow rules between them to be valid
functional dependency
constraint between two attributes in which one attribute is determined by another. like a function, follows a one to one mapping.
determinant
attribute on the left side of arrow in a functional dependency
candidate key
attribute or group of attributes that can uniquely identify row