Chapter 5 - Database Processing Flashcards
Columns
Also called fields.
Database
A self-describing collection of integrated records. A collection of tables plus relationships among the rows in those tables, plus special data, called metadata, that describes the structure of the database.
Rows
Also called records.
Table
Also called a file.
Primary Key
A column or group of columns that identifies a unique row in a table.
Foreign Keys
Keys of a different (foreign) table than the one in which they reside.
Relational Database
Database that carries it’s data in the form of tables and represents relationships using foreign keys.
Metadata
Data that describe data.
Database Management System (DBMS)
A program used to create, process, and administer a database. The DBMS creates tables, relationships, and other structures in the database.
Four Processing Operations of a DBMS
- Read
- Insert
- Modify
- Delete
Structured Query Language (SQL)
An international standard language for processing a database.
Database Application
A collection of forms, reports, queries, and application programs that process a database.
Form
Data entry forms are used to read, insert, modify and delete data.
Report
Reports query data using the DBMS and display the results in a structured context.
Lost-update Problem
A problem associated with multi-user processing. To prevent this problem, some type of locking must be used to coordinate the activities of users who know nothing about one another.