• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/42

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

42 Cards in this Set

  • Front
  • Back
The smallest unit of application data recognized by system software.
Field
A detailed coding scheme recognized by system software, such as a DBMS, for representing organizational data.
Data Type
The value a field will assume unless a user enters an explicit value for an instance of that field.
Default Value
This limits the set of permissible values may assume.
Range Control
An empty value.
Null Value Control
A form of range control in which the value of a field must exist as the value in some field in another row of the same or a different table.
Referential Integrity
The process of transforming normalized relations into non-normalized physical record specifications.
Denormalization
Distribution of the rows of a logical relation into several separate tables.
Horizontal Partitioning
Distribution of the columns of a logical relation into several separate physical tables.
Vertical Partitioning
A named portion of a secondary memory allocated for the purpose of storing physical records.
Physical File
A named logical storage unit in which data from one or more database tables, views or other database objects may be stored.
Tablespace
A contiguous section of disk storage space.
Extent
A technique for physically arranging the records of a file on secondary storage files.
File Organization
The storage of records in a file in sequence according to a primary key value.
Sequential File Organization
The storage of records either sequentially or non-sequentially with an index that allows software to locate individual files.
Indexed File Organization
A table or other data structure used to determine in a file the location of records that satisfy some condition.
Index
One field or a combination of fields for which more than one record may have the same combination of values.
Secondary (non unique) Key
An index on columns from two or more tables that come from the same domains of values.
Join Index
A storage system in which the address for each record is determined using a hashing algorithm
Hashed File Organization
A routine that converts a primary key value into a record number of relative file address.
Hashing Algorithm
A file organization that uses hashing to map a key into a location in an index, where there is a pointer to the actual data record matching the hash key.
Hash Index Table
A field of data indicating a target address that can be used to locate a related field of record data.
Pointer
A named two-dimensional table of data.
Relation
An attribute or a combination of attributes that uniquely identifies each row as a relation.
Primary Key
A primary key that consists of more than one attribute
Composite Key
An attribute in a relation that serves as the primary key of another relation in the same database.
Foreign Key
A state of a relation that requires that certain rules regarding relationships between attributes are satisfied.
Normal Form
A constraint between two attributes in which the value of one attribute is determined by the value of another attribute.
Functional Dependency
The attribute on the left side of the arrow in a functional dependency.
Determinant
An attribute or combination of attributes, that uniquely identifies a row in a relation.
Candidate Key
A relation that has a primary key and in which there are no repeating groups.
First Normal Form
A relation in first normal form in which every nonkey attribute is fully functionally dependent on the primary key.
Second Normal Form
A functional dependency in which one or more nonkey attributes are functionally dependent on part but not all of the primary key,
Partial Functional Dependency
A relation that is in second normal form and has no more transitive dependencies.
Third Normal Form
A functional dependency between the primary key and one or more nonkey attributes that are dependent on the primary key via another nonkey attribute,
Transitive Dependency
Two or more attributes that have different name but the same meaning.
Synonyms
An alternative name used for an attribute
Alias
An attribute may have more than one meaning.
Homonym
A rule that states that either each foreign key value must match a primary key value in another relation or the foreign key value must be null.
Referential Integrity Constraint
A relation that contains minimal redundancy and allows users to insert, modify, and delete the rows in a table without errors or inconsistencies.
Well-Structured Relation
An error or inconsistency that may result when a user attempts to update a table that contains redundant data. The three types of anomalies are insertion, deletion, and modification anomalies.
Anomaly
A primary key whose value is unique across all relations.
Enterprise Key