1/296
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
The _____ environment enhances interactive experiences, including wikis and blogs, and social networking applications.
Web 2.0
filed-oriented system // file processing system
stores and manages data in one or more separate files
economy of scale
the inherent efficiency of high-volume processing on larger computers. Database design allows better utilization of hardware. If a company maintains a enterprise-wide database, process is less expensive using a powerful mainframe server instead of using several smaller computers.
Database Administrator (DBA)
Someone who manages a database management system (DBMS).
The DBA assesses overall requirements and maintains the database for the benefit of the entire organization rather than a single department or user.
Data Manipulation Language (DML)
a DML controls database operations, including storing, updating, receiving, and deleting data. Most commercial DBMS uses a DML. (Oracle, IBM's DB2)
query language
Allows a user to specify a task without specifying how the task will be accomplished. Some query languages use natural language commands that resemble ordinary english sentences.
query by example (QBE)
a language allows the user to provide an example of the data requested.
Structured Query Language (SQL)
a query language that allows PC users to communicate with servers and mainframe computers.
key fields
Used during system design to organize, access, and maintain data structures. The four types of key fields are: primary keys, candidate keys, foreign keys, secondary keys.
primary key
A field or combination of fields that uniquely and minimally identifies a particular member of an entity.
EG: in a customer table the customer number is a unique primary key because no two customers can have the same customer number. The key is also minimal because it contains no information beyond what is needed to identify the customer.
secondary key
Field or combination of fields that can be used to access or retrieve records. Secondary keys are not unique. EG: to access records for only those customers in a specific postal code, the postal code field could be used as a secondary key.
Crow's Foot notation
A type of cardinality notation. It is called crow's foot notation because of the shapes, which include circles, bars, and symbols, that indicate various possibilities.
A single bar indicates one, a double bar indicates one and only one, a circle indicates zero, and a crow's foot indicates many.
functionally dependent
Functional dependence is an important concept for understanding the second normal form (2NF). The field X is said to be functionally dependent on the field Y if the value of X depends on the value of Y. For example, an order date is dependent on an order number; for a particular order number, there is only one value for the order date. In contrast, the product description is not dependent on the order number. For a particular order number, there might be several product descriptions, one for each item ordered.
Second Normal Form (2NF)
A record design is in second normal form (2NF) if it is in 1NF and if all fields that are not part of the primary key are dependent on the entire primary key. If any field in a 1NF record depends on only one of the fields in a combination primary key, then the record is not in 2NF. A 1NF record with a primary key that is a single field is automatically in 2NF.
sequence code
Numbers or letters assigned in a specific order. Sequence codes contain no additional information other than an indication of order of entry into a system