Databases 2.1/2.2

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/14

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

15 Terms

1
New cards

Strong Entity

an entity that can exist independent of any other entities and has it’s own relationships

2
New cards

Weak Entity

an entity that exists because of another entity and has it’s own relationships

3
New cards

Associative Entity

entity that represents the many to many relationships between other entities

4
New cards

Direct Relationship

a relationship between two entities that does not require on associative table

one-to-one or one-to-many

5
New cards

Composite Key

a key that consists of one or more attributes and in combination uniquely identifies the record

6
New cards

Lookup Table

a type of reference table that provides a list of allowable values to populate an attribute of another table

7
New cards

Reference Table

table that consists of key-value entries

key attribute is primary key and value attribute is what the key represents

8
New cards

Anomalies

inconsistencies that may occur when there are redundencies in data or dependencies between non-key attributes

9
New cards

Partial Dependency (1NF)

occurs when an attribute depends on only part of the primary key

indicates a need for another table

10
New cards

Repeating Groups (1NF)

attributes that hold more than one value within an attribute in a single record

indicates the need for another table

11
New cards

Functional Dependency (2NF)

the primary key determines the value of each non-key attribute within a single record

12
New cards

Transitive Functional Dependency (3NF)

situation where an attribute within a single record depends on another non-key attribute in the same record, which in turn relies on the primary key

does not work, attributes must directly rely on the primary key

13
New cards

Candidate Key

one or more attributes that van uniquely identify a record

primary or alternate key

14
New cards

Alternate Key

a candidate key that uniquely identifies a record but is not selected to be the primary key

15
New cards

Denormalization

rolling back the normalization process to contain some redundant information

increase query performance, optimize operations