• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/34

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

34 Cards in this Set

  • Front
  • Back

Database

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

Data Base Management System (DBMS)

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.

Database System

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

Database Administrator

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

Data Warehouse

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

Business Intelligence

Analyzing large amounts of data for strategic decision making.

Online Analytical Processing (OLAP)

Using queries to investigate hypothesized relationships among data.

Data Mining

Using sophisticated statistical analysis to "discover" unhypothesized relationships in the data.

Record Layout

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

Logical View

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

Physical View

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

Schema

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

Conceptual-Level Schema

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

External-Level Schema

An individual users's view of portions of a database; also called a subschema.

Subschema

A subset of the schema; the way the user defines the data and the data relationships.

Internal-Level Schema

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

Data Dictionary

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

Data Definition Language (DDL)

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

Data Manipulation Language (DML)

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

Data Query Language (DQL)

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

Report Writer

DBMS language that simplifies report creation.

Data Model

An abstract representation of database contents.

Relational Data Model

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.

Tuple

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

Primary Key

Database attribute, or combination attributes, that uniquely identifies each row in a table.

Foreign Key

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

Update Anomaly

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.

Insert Anomoly

Improper database organization that results in the inability to add records to a database.

Delete Anomaly

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

Relational Database

A database built using the relational data model.

Entity Integrity Rule

A non-null primary key ensures that every row in a table represents something and that it can be identified.

Referential Integrity Rule

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.

Normalization

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

Semantic Data Modeling

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