Exam2

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/30

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:05 AM on 11/12/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

31 Terms

1
New cards

Entity

An object or thing in the real world that is distinguishable from other objects, represented as a table in a database.

2
New cards

Relationship

The association between two or more entities in a database that defines how they are related.

3
New cards

One-to-many

A relationship type where one instance of the first entity can relate to multiple instances of the second entity.

4
New cards

Many-to-many

A relationship type where multiple instances of one entity can relate to multiple instances of another entity.

5
New cards

ER Modeling

A conceptual framework for designing databases using entities, relationships, and attributes.

6
New cards

ER Diagram

A graphical representation of the entities, relationships, and attributes in an ER model.

7
New cards

Data Redundancy

The unnecessary repetition of data within a database, leading to inconsistencies.

8
New cards

Single-valued

An attribute that can hold only one value per record.

9
New cards

Multi-valued

An attribute that can hold multiple values per record.

10
New cards

Top-down

A design approach that starts with a high-level overview and breaks it down into smaller components.

11
New cards

Bottom-up

A design approach that begins with specific details and works up to the full system.

12
New cards

First Normal Form (1NF)

A database is in 1NF if all columns contain atomic values and there are no repeating groups.

13
New cards

Flattening

The process of converting a multi-dimensional structure into a flat, two-dimensional format.

14
New cards

Data Anomaly

An inconsistency or problem in the database due to poor design.

15
New cards

Insertion Anomaly

A problem occurring when certain data cannot be inserted without other data present.

16
New cards

Deletion Anomaly

An issue that arises when deleting data results in unintended loss of related data.

17
New cards

Update Anomaly

A situation where data duplication requires multiple updates, risking inconsistencies.

18
New cards

Primary Key

A unique identifier for each record in a database table.

19
New cards

Candidate Key

A set of attributes that can uniquely identify each record in a table.

20
New cards

Composite Key

A key composed of two or more attributes that together uniquely identify a record.

21
New cards

Foreign Key

An attribute in a table that refers to the primary key of another table.

22
New cards

Lossless Join Property

A property of decomposition where no information is lost, allowing reconstruction of the original table.

23
New cards

Functional Dependence

A relationship where the value of one attribute determines the value of another.

24
New cards

Determinant

An attribute that uniquely determines the value of another attribute in functional dependency.

25
New cards

Partial Dependence

A type of dependence where an attribute depends on part of a composite primary key.

26
New cards

Second Normal Form (2NF)

A table is in 2NF if it is in 1NF and all non-key attributes depend on the entire primary key.

27
New cards

Transitive Dependence

A functional dependency where one non-key attribute depends on another, violating 3NF.

28
New cards

Third Normal Form (3NF)

A table is in 3NF if it is in 2NF and all attributes are directly dependent on the primary key.

29
New cards

Atomic

Data that cannot be divided into smaller units; holds a single, indivisible value.

30
New cards

Parse

To analyze and break down data or syntax into smaller components for processing.

31
New cards

Decomposition

The process of breaking down a database table to remove redundancy.