Chapter 4 - Relational Databases Flashcards
database
A set of interrelated, centrally coordinated data files that are stored with as little data redundancy as possible.
database 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 (DBA)
The person responsible for coordinating, controlling, and managing the database.
online transaction processing database (OLTP)
Database containing detailed current transaction data, usually in third normal form. Focuses on throughput, speed,availability,concurrency, and recoverability. Often used concurrently by hundreds of users.
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 user’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.
access rights
Permissions granted to create, read, update,and delete data, database records, or data files.
data dictionary
Information about the structure of the database, including a description of each data element.
Clicking on the following button will update the Previous Flashcard content and status of progress bar
data definition language (DDL)
DBMS language that builds the data dictionary, creates the database, describes logical views, and specifies record or field security constraints.
structured query language (SQL)
Standardized commercial programming language designed for managing data in relational database systems. Even though it is standardized,variations exist among different database systems.
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.