click below
click below
Normal Size Small Size show me how
ACC 409 Final Exam
Chapter 4 Terms
Question | Answer |
---|---|
The specialized computer program that manages and controls thedata and interfaces between the data and the application programs. | Database Management System (DBMS) |
The combination of the database, the database management system, and the application programs that access the database through the database management system. | Database System |
The person responsible for coordinating, controlling, and managing the data in the database. | Database Administrator |
Very large databases that contain both detailed and summarized data for a number of years and that are used for analysis rather than transaction processing. | Data Warehouses |
Accessing information stored in a data warehouse through statistical analysis or artificial intelligence techniques to "discover" unhypothesized relationships in the data. | Data Mining |
A document that illustrates the arrangement of items of data input, output, and file records. | Record Layout |
The manner in which a user or programmer conceptually organizes, views, and understands the relationships among data items. | Logical View |
The way data are physically arranged and stored in the computer system. | Physical View |
A description of the types of data elements that are in the database, the relationships among the data elements, and the strucutre or overall logical model used to organize and describe the data. | Schema |
The organization-wide view of the entire database. It lists all data elements in the database and the relationships between them. | Conceptual-Level Schema |
An individual user's or application program's view of a subset of the organization's database. Each of these individual user views is also referred to as a subschema. | External-Level Schema |
(1) A subset of the schema that includes only those data items used in a particular application program or by a particular user. (2) The way the user defines the data and the data relationships. | Subschema |
A low-level view of the entire database describing how the data are actually stored and accessed. It includes information about record layouts, definitions, addresses, indexes, and so forth. | Internal-Level Schema |
An ordered collection of data elements that contain information about the structure of the database. For each data element stored in the database, such as the customer number, there is a corresponding record in the _____ _____ describing it. | Data Dictionary |
A database management system language that ties the logical and physical views of the data together. | Data Definition Language (DDL) |
A database management system language used for data maintenance, which includes such operations as updating, inserting, and deleting portions of the database. | Data Manipulation Language (DML) |
A high level, English-like command language that is used to interrogate a database. Retrieves, sorts, orders, and presents subsets of the database in response to user queries. | Data Query Language (DQL) |
A language that simplifies report creation. Searches the database, extracts the specified data items, and prints them according to the user-specified format. | Report Writer |
An abstract representation of teh contents of a database. | Data Model |
All data elements are logically viewed as being stored in the form of two-dimensional tables called "relations". Each row represents a unique entity or record. Each column represents a field. | Relational Data Model |
The tables used to store data in a relational database. | Relations |
A row in a relation. Contains data about a specific occurrence in a database table. | Tuple |
The attribute, or combination of attributes, that uniquely identifies a specific row in a database table. Used to distinguish, order, and reference records in a database. | Primary Key |
An attribute appearing in one table that is itself the primary key of another table. Used to link tables. | Foreign Key |
A problem that can arise in a poorly designed relational database. If attributes that are not characteristics of the primary key of a relation are stored in that table, then that data item is stored in many different rows. | Update Anomaly |
The problem arises because new information about those attrributes cannot be entered in the database without violating integrity rules. | Insert Anomaly |
Deleting a row from that table may result in the loss of all information about those attributes that are not characteristics of the primary key. | Delete Anomaly |
A database management system that uses the relational database model developed by Dr. E. F. Codd in 1970. | Relational Database |
A design constraint in a relational database requiring that the primary key have a non-null value. Ensures that a specific object exists in the world and can be identifited by reference to its primary key value. | Entity Integrity Rule |
A constraint in a relational database design requiring that any non-null value of a foreign key must correspond to a primary key in the referenced table. | Referential Integrity Rule |
The process of following the guidelines for properly designing a relational database that is free from delete, insert, and update anomalies. | Normalization |