Chapter 6: Databases and Information Management

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

1/22

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.

23 Terms

1
New cards

Bit, Byte, Field, Record, File, Database

Data Hierarchy (Ascending)

2
New cards

8:1

Bits to Byte Ratio

3
New cards

Database

Collection of related files containing records on people, places, or things

4
New cards

Entity

Generalized category representing a person, place, or thing on which we store and maintain information

5
New cards

Attributes

Specific characteristics of each entity

6
New cards

Fields

Aka columns, store data representing an attribute

7
New cards

Records

Aka rows, store data for separate records, or tuples

8
New cards

Key Field

Uniquely identifies each record

9
New cards

Primary Key

One field in each table that cannot be duplicated and provides an unique identifier for all information in each row

10
New cards

One-to-One Relationship

A single record in Database A is ONLY related to a single record in Database B (and vice versa)

11
New cards

One-to-Many Relationship

A single record in Database A is related to multiple records in Database B, but a single record in Database B is only related to one record in Database A

12
New cards

Many-to-Many Relationship

Requires a “join table” or intersection relation that links to two table to join information

13
New cards

Example of a One-to-One Relationship (1)

The relationship between an employee and their parking spot

14
New cards

Example of a One-to-One Relationship (2)

The relationship between a student and their student ID number

15
New cards

Example of a One-to-Many Relationship (1)

The relationship between a student and their shared dorm

16
New cards

Example of a One-to-Many Relationship (2)

The relationship between a plane ticket and its corresponding flight number

17
New cards

Example of a Many-to-Many Relationship (2)

The relationship between students and classes (class registrations)

18
New cards

Example of a Many-to-Many Relationship (1)

The relationship between employees and their shifts

19
New cards

Bit

The bottom of the data hierarchy, representing either a 0 or a 1

20
New cards

Examples of Entities

SUPPIER, PART, CUSTOMER, SALES

21
New cards

Examples of Attributes

SUPPLIER name, address

PART description, unit price, supplier

22
New cards

Foreign Key

A field in one table that uniquely identifies a row of another table

23
New cards

Referential Integrity Rules

Used by relational databases to ensure that relationships between coupled tables remain consistent.