Information Management (Chapter 5)

0.0(0)
studied byStudied by 0 people
full-widthCall with Kai
GameKnowt Play
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

Determination

The role of a key. In the context of a database table, the statement “A determines B” indicates that knowing the value of attribute A means that the value of attribute B can be looked up.

2
New cards

Functional dependence

Within a relation R, an attribute B is functionally dependent on an attribute A if and only if a given value of attribute A determines exactly one value of attribute B.

3
New cards

Determinant

Any attribute in a specific row whose value directly determines other values in that row

4
New cards

Dependent

An attribute whose value is determined by another attribute

5
New cards

Full functional dependence

A condition in which an attribute is functionally dependent on a composite key but not on any subset of the key.

6
New cards

Flags (Integrity Rules)

Special codes implemented by designers to trigger a required response, alert end users to specified conditions, or encode values. • Flags may be used to prevent nulls by bringing attention to the absence of a value in a table.

7
New cards

Composite entity (M:N Relationship)

An entity designed to transform an M:N relationship into two 1:M relationships. The composite entity’s primary key comprises at least the primary keys of the entities that it connects. • Also known as a bridge entity or associative entity.

8
New cards

Linking table (M:N Relationship)

In the relational model, a table that implements an M:M relationship.

9
New cards

Index

An ordered array of index key values and row ID values (pointers). Indexes are generally used to speed up and facilitate data retrieval. • Also known as an index key.

10
New cards

Unique index

An index in which the index key can have only one associated pointer value (row).

11
New cards

Relational algebra

A set of mathematical principles that form the basis for manipulating relational table contents

12
New cards

Relvar

Short for relation variable, a variable that holds a relation. A relvar is a container (variable) for holding relation data, not the relation itself

13
New cards

closure

A property of relational operators that permits the use of relational algebra operators on existing tables (relations) to produce new relations

14
New cards

SELECT

In relational algebra, an operator used to select a subset of rows. • Also known as RESTRICT

15
New cards

PROJECT

In relational algebra, an operator used to select a subset of columns.

16
New cards

UNION

In relational algebra, an operator used to merge (append) two tables into a new table, dropping the duplicate rows. The tables must be union-compatible.

17
New cards

Union-compatible

Two or more tables that have the same number of columns and the corresponding columns have compatible domains

18
New cards

INTERSECT

In relational algebra, an operator used to yield only the rows that are common to two union-compatible tables.

19
New cards

DIFFERENCE

In relational algebra, an operator used to yield all rows from one table that are not found in another union-compatible table.

20
New cards

PRODUCT

In relational algebra, an operator used to yield all possible pairs of rows from two tables. • Also known as the Cartesian product.

21
New cards

DIVIDE

In relational algebra, an operator that answers queries about one set of data being associated with all values of data in another set of data.

22
New cards

Data dictionary

A DBMS component that stores metadata—data about data

23
New cards

System catalog

A detailed system data dictionary that describes all objects in a database.

24
New cards

Homonym

The use of the same name to label different attributes. Homonyms generally should be avoided.

25
New cards

Synonym

The use of different names to identify the same object, such as an entity, an attribute, or a relationship; synonyms should generally be avoided