Chapter 7: Databases and Data Warehouses Flashcards
Data can be maintained in one of the two ways: the _________ - which has no mechanism for tagging, retrieving, and manipulating data- and the _________, which does have this mechanism.
traditional files approach
database approach
_________ wastes storage space (and consequently money) and is inefficient.
Data redundancy
Inaccuracies affect _______ - the characteristic that the data represents what it is supposed to represent and that it is complete and correct.
data integrity
An ________ is any object about which an organization chooses to collect data.
entity
The smallest piece of data is a _________.
character
A ______ is one piece of information about an entity, such as the last name or first name of a student, or the student’s address.
field
The fields related to the same entity make up a _______.
record
A collection of related records, such as all the records of a college’s students, is called a _______.
file
The program used to build databases, populate them with data, and manipulate the data is called a ________.
database management system (DBMS)
The program used to build databases, populate them with data, and manipulate the data is called a _____.
database management system (DBMS)
Data is accessed in a database by sending messages called _____, which request data from specific records and/or fields and direct the computer to display the results.
queries
The _________ consists of tables. Its roots are in relational algebra, but you do not have to know relational algebra to build and use them.
relational database model
A ___ is a field whose values identify records either for display or for processing.
key
A _____ combines data from two or more tables.
join table
A _____ is the field by which records in a table are uniquely identified. If your query specified that you wanted the record whose CustomerID value is 36003, the system would retrieve the record of the person you wanted, even if there are more records of people with the same name.
primary key
A _____ is a combination of two or more fields that together serves as a primary key, because it is impractical to use a single field as a primary key.
composite key