dbms quiz 3

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

1/23

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.

24 Terms

1
New cards

Read

transfer data from disk to main memory (RAM)

2
New cards

Write

transfer data from RAM to disk

3
New cards

Seek Time

moving arms to position disk head on track

4
New cards

rotational delay

waiting for block to rotate under head

5
New cards

transfer time

actually moving data to/from disk surface

6
New cards

Disk Array

arrangement of several disks that gives abstraction of a single, large disk.

7
New cards

Disk page

a fixed-size block of data in a disk storage system, managed by the operating system and used for efficient data transfer.

8
New cards

free freame

a memory page not currently assigned to any process, allowing for efficient allocation of resources in a memory management system.

9
New cards

buffer pool

a collection of memory buffers used to store data temporarily to reduce the frequency of disk access and improve overall system performance.

10
New cards

file

A collection of pages, each containing a collection of records

11
New cards

Disks

Can retrieve random page at fixed cost

12
New cards

Tapes

Can only read pages in sequence

13
New cards

File organization

Method of arranging a file of records on external storage

14
New cards

Architecture

Buffer manager stages pages from external storage to main memory buffer pool. File and index layers make calls to the buffer manager.

15
New cards

index on a file

A structure that improves the speed of data retrieval operations on a database table, allowing for faster access to records.

16
New cards

B tree indexes

a type of data structure that maintains sorted data and allows for efficient insertion, deletion, and search operations, commonly used in databases for indexing.

17
New cards

B tree Leaf pages

Pages that contain actual records or pointers to records in a B-tree structure, usually at the lowest level of the tree.

18
New cards

B tree Non-leaf pages

pages that contain index entries in a B tree structure, assisting in navigation and indexing.

19
New cards

clustered index

A type of database index that sorts and stores the actual data rows in the table according to the indexed column, allowing for faster retrieval.

20
New cards

unclustered index

A type of index in a database that does not sort the actual table rows but contains pointers to the rows, allowing for alternative ways to access data.

21
New cards
22
New cards
23
New cards
24
New cards