Database Systems exam 2 review

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

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.

25 Terms

1
New cards

Relational data model

Data stored in two-dimensional tables with rows and columns.

2
New cards

Primary key

Uniquely identifies each row in a relation.

3
New cards

Foreign key

Links child table to parent table in relations.

4
New cards

Domain constraints

Define allowable values for attributes in a relation.

5
New cards

Entity integrity

No primary key attribute can be null.

6
New cards

Referential integrity

Foreign key must match primary key or be null.

7
New cards

1NF

No repeating groups; all attributes are atomic.

8
New cards

2NF

In 1NF; non-key attributes fully depend on primary key.

9
New cards

3NF

In 2NF; no transitive dependencies among non-key attributes.

10
New cards

Varchar2

Variable length character data, max length 4000 chars.

11
New cards

Char

Fixed length character data, max length 2000 chars.

12
New cards

CLOB

Character large object, stores up to 4 GB of data.

13
New cards

Number

Positive or negative numbers in range 10^-130 to 10^126.

14
New cards

Date

Stores century, month, day, hour, minute, second.

15
New cards

BLOB

Binary large object, stores up to 4 GB of binary data.

16
New cards

Denormalization

Combines tables for performance, may cause redundancy.

17
New cards

Partitioning

Splits large tables into smaller ones for efficiency.

18
New cards

File organization

Methods include heap, sequential, indexed, and hashed.

19
New cards

Indexing

Speeds up data retrieval by mapping values to rows.

20
New cards

Transaction volume

Estimates database access frequencies based on usage.

21
New cards

Physical database design

Translates logical design into physical structures.

22
New cards

advantages of partitioning

load balancing, efficiency, and improved security by segregated data

23
New cards

objective of choosing data types

efficient use of storage space, fast data retrieval, accurate representation of the data, and minimizing future changes and ensuring compitability with the data that will be stored

24
New cards

factors influencing design

data volume, usage analysis, and regulatory compliance

25
New cards

properties of relations

unique names for each relation and column/row, no multivalued attributes, and order of rows and columns is insignificant