Chapter 4: Relational Databases Flashcards

1
Q

database

A

a set of interrelated, centrally coordinated data files that are stored with as little data redundancy as possible

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

database management system (DBMS)

A

the program that manages and controls the data and the interfaces between the data and the application programs that use the data stored in the database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

database system

A

the database, the DBMS, and the application programs that access the database through the DBMS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

database administrator

A

the person responsible for coordinating, controlling, and managing the database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

data warehouse

A

very large databases containing detailed and summarized data for a number of years that are used for analysis rather than transaction processing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

business intelligence

A

analyzing large amounts of data for strategic decision making

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

online analytical processing (OLAP)

A

using queries to investigate hypothesized relationships among data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

data mining

A

using sophisticated statistical analysis to “discover” unhypothesized relationships in the data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

record layout

A

document that shows the items storied in a file, including the order and length of the data fields and the type of the data stored

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

logical view

A

how people conceptually organize, view, and understand the relationships among data items

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

physical view

A

the way data are physically arranged and stored in the computer system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

schema

A

a description of the data elements in a database, the relationships among them, and the logical model used to organize and describe the data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

conceptual-level schema

A

the organization-wide view of the entire database that lists all data elements and the relationships between them

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

external-level schema

A

an individual user’s view of portions of a database; also called a subschema

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

subschema

A

a subset of the schema; the way the user defines the data and the data relationships

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

internal-level schema

A

a low-level view of the entire database describing how the data are actually stored and accessed

17
Q

data dictionary

A

information about the structure of the database, including a description of each data element

18
Q

data definition language (DDL)

A

DMBS language that builds the data dictionary, creates the database, describes logical views, and specifies record or field security constraints

19
Q

data manipulation language (DML)

A

DBMS language that changes database content, including data element creations, updates, insertions, and deletions

20
Q

data query language (DQL)

A

high-level, English-like DBMS language that contains powerful, easy-to-use commands that enable users to retrieve, sort, order, and display data

21
Q

report writer

A

DBMS language that simplifies report creation

22
Q

data model

A

an abstract representation of database contents

23
Q

relational data model

A

a two-dimensional table representation of data; each row represents a unique entity (record) and each column is a field where record attributes are stored

24
Q

tuple

A

a row in a table that contains data about a specific item in a database table

25
Q

primary key

A

database attribute, or combination of attributes, that uniquely identifies each row in a table

26
Q

foreign key

A

an attribute in a table that is also a primary key in another table; used to link the two tables

27
Q

update anomaly

A

improper database organization where a non-primary key item is stored multiple times; updating the item in one location and not the others causes data inconsistencies

28
Q

insert anomaly

A

improper database organization that results in the inability to add records to a database

29
Q

delete anomaly

A

improper organization of a database that results in the loss of all information about an entity when a row is deleted

30
Q

relational database

A

a database built using the relational data model

31
Q

entity integrity rule

A

a nonnull primary key ensures that every row in a table represents something and that it can be identified

32
Q

referential integrity rule

A

foreign keys which link rows in one table to rows in another table must have values that correspond to the value of a primary key in another table

33
Q

normalization

A

following relational database creation rules to design a relational database that is free from delete, insert, and update anomalies

34
Q

semantic data modeling

A

using knowledge of business processes and information needs to create a diagram that shows what to include in a fully normalized database (in 3NF)