Chapter 4 Flashcards

1
Q

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

A

database

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

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

A

database system

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

analyzing large amounts of data for strategic decision making

A

business intelligence

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

using queries to investigate hypothesized relationships among data

A

online analytical processing (OLAP)

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

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

A

data mining

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

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

A

record layout

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

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

A

logical view

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

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

A

physical view

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

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

A

schema

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

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

A

conceptual level schema

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

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

A

external level schema

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

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

A

subschema

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

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

A

internal level schema

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

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

A

data dictionary

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

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

A

data definition language (DDL)

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

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

A

data manipulation language (DML)

17
Q

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

A

data query language (DQL)

18
Q

DBMS language that simplifies report creation

A

report writer

19
Q

an abstract representation of database contents.

A

data model

20
Q

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.

A

relational data model

21
Q

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

22
Q

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

A

primary key

23
Q

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

A

foreign key

24
Q

improper database organization where a non primary key item is stored multiple ties; updating the item in one location and not the other causes data inconsistencies.

A

update anomaly

25
improper database organization that results in the inability to add record to a database
insert anomaly
26
improper organization of a database that results in the loss of all information about an entity when a row is deleted.
delete anomaly
27
a non null primary key ensures that every row i a table represents something and that it can be identified
entity integrity rule
28
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
referential integrity rule
29
following relational database creating rules to design a relational database that is free from delete, insert, and update anomalies
normalization
30
using knowledge of business processes and information needs to create a diagram that shows what to include in a fully normalized database
semantic data modeling