• 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/37

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;

37 Cards in this Set

  • Front
  • Back

attribute

1. A column of a relation; also called a column, field, or data item.


2. A property in an entity

Boyce-Codd Normal Form


(BCNF)

A relation in which every determinant is a candidate key.

candidate key

An attribute or group of attributes that identifies a unique now in a relation. One of the candidate keys is chosen to be the primary key.

composite key

In database design, a key with two or more attributes.

data integrity problems

A table that has inconsistencies that create insert, update, or deletion anomalies is said to have data integrity problems

database integrity

The state of a database in which all constraints are fulfilled. Usually refers to interrelation constraints in which the value of a foreign key is required to be present the table having that foreign key as its primary key.

decomposition rule

later

deletion anomaly

In a relation, the situation in which the removal of one row of a table deletes facts about two or more themes.

determinant

One or more attributes that functionally determine another attribute or attributes, In the functional dependency (A. B)-->C, the attributes (A. B) are the determinant.

domain

A name set of all possible values that an attribute can have, rules for determining allowed values.

domain integrity constraint

Also called a domain constraint, a data constraint that limits data values to a particular set of values.

domain/key normal form


(DK/NF)

A relation in which all constraints are logical consequences of domains and keys

entity

1. In the entity-relationship model, a representation of something that users want to track.


2. In a generic sense, something that users want to track. In the relational model, an entity is stored in one row of a table.

entity integrity constraint

The constraint that the primary key column or columns must have unique values so that each row can be uniquely identified.

fifth normal form


(5NF)

A normal form necessary to eliminate an anomaly where a table can be split apart but not correctly joined back together. Also know as Project-Join Normal Form(PJ/NF)

first normal form


(1NF)

Any table that fits the definition of a relation.

fourth normal form


(4NF)

A relation in Boyce-Codd normal form in which there are no multivalued dependencies or in which all attributes participate in a single multivalued dependency

functional dependency

A relationship between attributes in which one attribute or group of attributes determines the value of another.

functionally dependent

The term that describes the right-hand side of a functional dependency, The right-hand values of a functional dependency are said to be functionally dependent upon the left-hand table side values of the functional dependency.

insertion anomaly

In a relation, the condition that exists when ,to add a complete row to a table, one must add facts about two or more logically different themes.

key

1. Group of one or more attributes identifying a unique row in a relation. Because relations may not have duplicate rows , every relation must have at least one key, which is the composite of all of the attributes in the relation, A key is sometime called a logical key.


2. With some relational DBMS products, an index on a column used to improve access and sorting speed, sometime called Physical key.

multivalued dependency

A condition in a relation with three or more attributes in which independent attributes appear to have relationships they do not have.

non-prime attribute

In normalization, an attribute that is not contained in any candidate key.

normal forms

A rule or set of rules governing the allowed structure of relations. The rules apply to attributes, functional dependencies, multivalue dependencies, domains, and constraints.

null value

An attribute value that has never been supplied. Such values are ambiguous and can mean that 1. the value is unknown 2. the value is not appropriate or 3. the value is known to be blank.

overlapping candidate key

Two candidate keys are said to be overlapping candidate keys if they have one or more attributes in common.

partially dependent

In normalization, a condition where an attribute is dependent on only part of a composite primary key instead of on the whole key.

Project-Join Normal Form


(PJ/NF)

Anohter name for 5NF.

referential integrity constraint

A relationship constraint on foreign key values, A referential integrity constraint specifies that the values of a foreign key must be a subset of the values of the primary key to which it refers.

relation

A two-dimensional array containing single-value entries and no duplicate rows.Values for a given entity are shown in rows; values of attributes of that entity are shown in columns. The meaning of the columns is that same in every row. The order of the rows and columns is immaterial.

second normal form


(2NF)

A relation in first normal form in which all non-key attributes are dependent on all of the key attributes.

surrogate key

A unique, system supplied identifier used as the primary key of a relation. It is created when a row is created, it never changes, and it is destroyed when the row is deleted. The values of a surrogate key have no meaning to the users and are usually hidden within forms and reports.

third normal form


(3NF)

A relation in second normal form that has no transitive dependencies.

transitive dependency

In a relation having at least three attributes , for example, R (A. B. C),the situation in which A determines B, B determines C, but B does not determine A.

tuple

same as row.

union rule

later

update anomaly

A data error created in a non normalized table when an update action modifies one data value without modifying another occurrence of the same data value in the table.