D426 Ch 5: Data Storage

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

1/47

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts and details about storage media, indexing, and database operations discussed in the lecture.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

48 Terms

1
New cards

Reading one gigabyte takes about __.

one second.

2
New cards

Used to store petabytes (millions of gigabytes) of user data in the cloud.

Magnetic disk (HDD)

3
New cards

Working memory (RAM)

Most expensive type of storage per byte.

4
New cards

The three types of storage are:

RAM, flash memory (SDD), and magnetic disks (HDD).

5
New cards

Each track on a __ contains sectors that hold data.

magnetic disk

6
New cards

A storage controller is responsible for managing __ in computing.

data flow

7
New cards

Flash memory is divided into __.

pages and blocks

8
New cards

Storage can be organized into blocks of __ bytes.

4 kilobytes.

9
New cards

A __ is a collection of related data treated as a unit.

table.

10
New cards

The __ of an index can speed up data retrieval.

structure.

11
New cards

An index on the table sort __ helps in efficient searching.

column.

12
New cards

A compiled reservation list for flights includes __ among other fields.

Flight Number.

13
New cards

An index with one entry for each table __ is known as a dense index.

row.

14
New cards

A __ index may only include entries for certain blocks instead of every row.

sparse.

15
New cards

If a database table is partitioned, it is divided into __ for easier management.

sections.

16
New cards

CREATE INDEX is a command used to create an __ in a database.

index.

17
New cards

A primary index is based on the __ key of a table.

primary.

18
New cards

To drop an index, use the command __.

DROP INDEX.

19
New cards

A __ allows you to designate where data is stored in a database system.

tablespace.

20
New cards

Partitions can be created based on __ values for efficient queries.

range.

21
New cards

The command to create a table is __ TABLE.

CREATE.

22
New cards

In table structures, each row may contain __ of data.

columns.

23
New cards

Physical design focuses on how data is __ on storage media.

arranged.

24
New cards

A bitmap index stores information as __ of bits.

sequences.

25
New cards

The __ query is used to extract data from one or more tables in a database.

SELECT.

26
New cards

The __ column is where searching is typically most efficient.

sort.

27
New cards

SQL commands for data manipulation include SELECT, __, and DELETE.

INSERT.

28
New cards

An optimized index can greatly reduce the time it takes to retrieve __.

data.

29
New cards

In a sorted index, rows are ordered based on the __ of a specified column.

values.

30
New cards

Indexes can be created on multiple __ to enhance performance.

columns.

31
New cards

An index does not store actual data, but rather __ to the data.

pointers.

32
New cards

__ can be a crucial factor in determining the speed at which data is retrieved.

Indexing.

33
New cards

The __ statement is used to describe how SQL queries will be executed by the database system.

EXPLAIN.

34
New cards

In terms of memory, a computer's main memory is often referred to as __.

RAM.

35
New cards

Data stored in a cloud environment is often __ accessible anywhere.

remotely.

36
New cards

An __ index helps in faster data retrieval compared to a non-unique index.

efficient.

37
New cards

The command that specifies how to fetch a result set efficiently is __.

EXPLAIN.

38
New cards

To create durable data storage, systems can use __ during backup and recovery processes.

snapshots.

39
New cards

Inserting new rows may require checking for __ to maintain data integrity.

primary key constraints.

40
New cards

USE __ to select a specific database before performing any operations.

USE DATABASE.

41
New cards

Transforming data for analysis can rely heavily on __ structures.

pivot.

42
New cards

One characteristic of a bitmap index is its ability to quickly identify __ across multiple queries.

frequencies.

43
New cards

An average flight data entry includes columns for Flight Number, __, and Departure Time.

Airline Name.

44
New cards

A list of values that shows how many rows each column covers is known as a __.

Cardinality.

45
New cards

Different types of index structures may be used to optimize searches for __.

performance.

46
New cards

Database management relies on the principles of data storage and __.

retrieval.

47
New cards

Cloud services typically charge based on __ used by the data storage.

amount of space.

48
New cards

The __ class of storage solutions might include modern databases.

filesystem.